From: Richard Levitte Date: Sat, 23 Jun 2001 16:44:15 +0000 (+0000) Subject: Including stdio.h before setting _XOPEN_SOURCE and X-Git-Tag: OpenSSL_0_9_6c~182^2~75 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1ae6ddac91fc95ddc3e8fbf11839f3e54be04421;p=oweals%2Fopenssl.git Including stdio.h before setting _XOPEN_SOURCE and _XOPEN_SOURCE_EXTENDED wasn't very smart... --- diff --git a/crypto/engine/enginetest.c b/crypto/engine/enginetest.c index 59afe8e3c4..06a439b4c0 100644 --- a/crypto/engine/enginetest.c +++ b/crypto/engine/enginetest.c @@ -56,7 +56,6 @@ * */ -#include #include /* The following defines enable the declaration of strdup(), which is an extended function according to X/Open. */ @@ -67,6 +66,7 @@ # define _XOPEN_SOURCE # define _XOPEN_SOURCE_EXTENDED /* For Linux and probably anything GNU */ #endif +#include #include #include #include