Always #include corresponding .h in .c files

While doing this, remove declarations from header files where the
corresponding definition is declared "static" in order to avoid build
errors.

Also re-order existing headers in ui-*.c so that the file-specific
header always comes immediately after "cgit.h", helping with future
consistency.

Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
John Keeping 2013-04-06 11:37:59 +01:00 committed by Jason A. Donenfeld
parent a5e4ad2d8b
commit 8f20879431
22 changed files with 20 additions and 8 deletions

2
html.h
View file

@ -1,7 +1,7 @@
#ifndef HTML_H
#define HTML_H
extern int htmlfd;
#include <stddef.h>
extern void html_raw(const char *txt, size_t size);
extern void html(const char *txt);