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

@@ -16,10 +16,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "mdbtools.h"
#include "time.h"
#include "math.h"
#include "config.h"
#include <time.h>
#include <math.h>
#include <inttypes.h>
#include "mdbtools.h"
#ifdef DMALLOC
#include "dmalloc.h"