diff options
author | Peter Colberg <peter@colberg.org> | 2016-01-14 01:25:07 +0300 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2016-01-14 16:02:29 +0300 |
commit | 4c69241b052f7fa6d4c967bd9bc97c9db92a9572 (patch) | |
tree | c313d6b46789da5a58a213c12c81a956156e1f99 /ui-shared.h | |
parent | 9abe4a26a92b91170cb9c5dab830b40fb1e0327f (diff) |
Fix missing prototype declarations
Signed-off-by: Peter Colberg <peter@colberg.org>
Diffstat (limited to 'ui-shared.h')
-rw-r--r-- | ui-shared.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ui-shared.h b/ui-shared.h index 474e0c5..de08e1b 100644 --- a/ui-shared.h +++ b/ui-shared.h @@ -1,11 +1,11 @@ #ifndef UI_SHARED_H #define UI_SHARED_H -extern const char *cgit_httpscheme(); -extern char *cgit_hosturl(); -extern const char *cgit_rooturl(); -extern char *cgit_currenturl(); -extern const char *cgit_loginurl(); +extern const char *cgit_httpscheme(void); +extern char *cgit_hosturl(void); +extern const char *cgit_rooturl(void); +extern char *cgit_currenturl(void); +extern const char *cgit_loginurl(void); extern char *cgit_repourl(const char *reponame); extern char *cgit_fileurl(const char *reponame, const char *pagename, const char *filename, const char *query); @@ -66,7 +66,7 @@ extern void cgit_print_age(time_t t, time_t max_relative, const char *format); extern void cgit_print_http_headers(void); extern void cgit_redirect(const char *url, bool permanent); extern void cgit_print_docstart(void); -extern void cgit_print_docend(); +extern void cgit_print_docend(void); __attribute__((format (printf,3,4))) extern void cgit_print_error_page(int code, const char *msg, const char *fmt, ...); extern void cgit_print_pageheader(void); |