diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-05-08 00:29:54 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-05-08 00:29:54 +0200 |
commit | a3a51e321ff931b45373afc4f9d0886249359ca0 (patch) | |
tree | dbd2848e416da7c489a326a788aaab924fd9ba07 /src/directives.h | |
parent | 68e4c6ce2cbcc16f5613a7731d4cfac13e4d3354 (diff) | |
download | blogc-a3a51e321ff931b45373afc4f9d0886249359ca0.tar.gz blogc-a3a51e321ff931b45373afc4f9d0886249359ca0.tar.bz2 blogc-a3a51e321ff931b45373afc4f9d0886249359ca0.zip |
directives: declare directive functions as static
Diffstat (limited to 'src/directives.h')
-rw-r--r-- | src/directives.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directives.h b/src/directives.h index 0c6e35b..de1cb55 100644 --- a/src/directives.h +++ b/src/directives.h @@ -31,6 +31,6 @@ char* blogc_directive_loader(blogc_directive_ctx_t *ctx, blogc_error_t **err); // built-in directives (that are everything we support right now -char* blogc_directive_youtube(blogc_directive_ctx_t *ctx, blogc_error_t **err); +static char* blogc_directive_youtube(blogc_directive_ctx_t *ctx, blogc_error_t **err); #endif /* _DIRECTIVES_H */ |