cgit

commit f2e8ca806d43acbfd9bef53f1a3ee5ce95ff32e7

Author: John Keeping <john@keeping.me.uk>

configfile.c: don't include system headers directly

git-compat-util.h may define various values that affect the
interpretation of system headers.  In most places we include cgit.h
first, which pulls in git-compat-util.h, but this file does not depend
on anything else in CGit, so use git-compat-util.h directly.

Signed-off-by: John Keeping <john@keeping.me.uk>

 configfile.c | 3 +--


diff --git a/configfile.c b/configfile.c
index 833f158e1a76469bbfdc9a1e5aac7dc0947a603f..5b0d880cb7d2d1da755b2f4bc621a6c460ef4df0 100644
--- a/configfile.c
+++ b/configfile.c
@@ -6,8 +6,7 @@  * Licensed under GNU General Public License v2
  *   (see COPYING for full license text)
  */
 
-#include <ctype.h>
-#include <stdio.h>
+#include <git-compat-util.h>
 #include "configfile.h"
 
 static int next_char(FILE *f)