Move system headers up top so we compile on Ubuntu 10.04

This commit is contained in:
Daniel O'Connor 2012-08-06 17:00:33 +09:30
parent b7fa83624d
commit 0d5ecb4a9e

9
log.c
View File

@ -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 <stdlib.h>
#include <stdio.h>
#include <ctype.h>
@ -35,6 +31,11 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include <sys/stat.h>
#include <fcntl.h>
#include "log.h"
#include "conf.h"
#include "strbuf.h"
#include "strbuf_helpers.h"
unsigned int debug = 0;
static FILE *logfile = NULL;