summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2020-06-23 22:24:58 +0800
committerMatt Johnston <matt@ucc.asn.au>2020-06-23 22:24:58 +0800
commita7a67585cbc3fe5df85c641618b347a51a943356 (patch)
treeb98f17cca047dc994e129b73e8a8282ed684717e
parent1490c0c3a6eddfa0bace7729bad87f34c10399c6 (diff)
downloaddropbear-a7a67585cbc3fe5df85c641618b347a51a943356.tar.gz
move GNU_SOURCE earlier
-rw-r--r--includes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes.h b/includes.h
index 2789f23..884ebf7 100644
--- a/includes.h
+++ b/includes.h
@@ -25,6 +25,8 @@
#ifndef DROPBEAR_INCLUDES_H_
#define DROPBEAR_INCLUDES_H_
+/* uclibc needs _GNU_SOURCE, maybe other things? */
+#define _GNU_SOURCE
#include "options.h"
#include "debug.h"
@@ -125,8 +127,6 @@
#endif
#ifdef HAVE_SYS_RANDOM_H
-/* uclibc needs _GNU_SOURCE */
-#define _GNU_SOURCE
#include <sys/random.h>
#endif