Code

Fix compilation against >=xfsprogs-4.7.0
[collectd.git] / src / utils_mount.c
index d303677d4e6b0f88b2153fcd85b17a5ab50b7f3a..37b52d683ceb4e27154c67140e8cd73111b050da 100644 (file)
 # include "config.h"
 #endif
 
+#define _GNU_SOURCE
+
+#include "collectd.h"
+#include "utils_mount.h"
+
 #if HAVE_XFS_XQM_H
-# define _GNU_SOURCE
 # include <xfs/xqm.h>
 #define XFS_SUPER_MAGIC_STR "XFSB"
 #define XFS_SUPER_MAGIC2_STR "BSFX"
 #endif
 
-#include "common.h"
-#include "plugin.h"
-#include "utils_mount.h"
+#include "common.h" /* sstrncpy() et alii */
+#include "plugin.h" /* ERROR() macro */
+
 
 #if HAVE_GETVFSSTAT
 #  if HAVE_SYS_TYPES_H