From 0d5ecb4a9e3ea516993150a066b62b400f2ad076 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Mon, 6 Aug 2012 17:00:33 +0930 Subject: [PATCH] Move system headers up top so we compile on Ubuntu 10.04 --- log.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/log.c b/log.c index 965670ee..923a0653 100644 --- a/log.c +++ b/log.c @@ -17,10 +17,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "log.h" -#include "conf.h" -#include "strbuf.h" -#include "strbuf_helpers.h" #include #include #include @@ -35,6 +31,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #include #include +#include "log.h" +#include "conf.h" +#include "strbuf.h" +#include "strbuf_helpers.h" + unsigned int debug = 0; static FILE *logfile = NULL;