We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22f55aa commit 902aa39Copy full SHA for 902aa39
util.c
@@ -1,19 +1,19 @@
1
2
+#ifdef HAVE_MEMMEM
3
+#define _GNU_SOURCE
4
+#endif
5
+
6
#include <sys/types.h>
7
#include <sys/stat.h>
8
#include <assert.h>
9
#include <fcntl.h>
-
-#ifdef HAVE_MEMMEM
-#define _GNU_SOURCE
10
+#include <limits.h>
11
#include <string.h>
-#endif
12
+#include <stdlib.h>
13
+#include <unistd.h>
14
#ifndef WIN32
15
#include <pwd.h>
16
#endif
-#include <stdlib.h>
-#include <unistd.h>
-#include <limits.h>
17
18
19
#include "util.h"
0 commit comments