Changes by: yura
Update of /cvs/linux-ntfs/ntfsprogs/include/ntfs
In directory delta357.server4you.de:/tmp/cvs-serv1196
Modified Files:
support.h
Log Message:
Fix include order. Thanks, Yuval!
Index: support.h
===================================================================
RCS file: /cvs/linux-ntfs/ntfsprogs/include/ntfs/support.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- support.h 2 Aug 2006 03:11:12 -0000 1.10
+++ support.h 3 Aug 2006 02:49:00 -0000 1.11
@@ -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.
*/
|