Fix include order. Thanks, Yuval!
parent
aea6c7ea4f
commit
1493070b8e
|
@ -24,10 +24,6 @@
|
|||
#ifndef _NTFS_SUPPORT_H
|
||||
#define _NTFS_SUPPORT_H
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "logging.h"
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif
|
||||
|
@ -36,6 +32,12 @@
|
|||
#include <stddef.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STDLIB_H
|
||||
#include <stdlib.h>
|
||||
#endif
|
||||
|
||||
#include "logging.h"
|
||||
|
||||
/*
|
||||
* Our mailing list. Use this define to prevent typos in email address.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue