Include config.h in all .c files

Need to be the first file since it may define large files support
and other options.
This commit is contained in:
Nirgal Vourgère
2013-07-04 10:53:13 +02:00
parent 66b87caf26
commit 7162e8db74
60 changed files with 106 additions and 50 deletions

View File

@@ -1,4 +1,6 @@
/* utility program to make a hex dump of a binary file (such as a mdb file) */
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>

View File

@@ -1,5 +1,6 @@
/* support routines for code generated by the util programs */
#include "config.h"
#include <stdio.h>
#include <string.h>