unistd.h is always in the same place; no need to #include the result of
authorderaadt <deraadt@openbsd.org>
Thu, 17 Apr 2014 10:24:08 +0000 (10:24 +0000)
committerderaadt <deraadt@openbsd.org>
Thu, 17 Apr 2014 10:24:08 +0000 (10:24 +0000)
a maze of conditional #define's

27 files changed:
lib/libcrypto/bf/bf_opts.c
lib/libcrypto/bf/bfspeed.c
lib/libcrypto/cast/cast_spd.c
lib/libcrypto/cast/castopts.c
lib/libcrypto/des/des_locl.h
lib/libcrypto/des/des_opts.c
lib/libcrypto/des/speed.c
lib/libcrypto/idea/idea_spd.c
lib/libcrypto/opensslconf.h.in
lib/libcrypto/rc2/rc2speed.c
lib/libcrypto/rc4/rc4speed.c
lib/libcrypto/rc5/rc5speed.c
lib/libssl/src/apps/s_time.c
lib/libssl/src/apps/speed.c
lib/libssl/src/crypto/bf/bf_opts.c
lib/libssl/src/crypto/bf/bfspeed.c
lib/libssl/src/crypto/cast/cast_spd.c
lib/libssl/src/crypto/cast/castopts.c
lib/libssl/src/crypto/des/des_locl.h
lib/libssl/src/crypto/des/des_opts.c
lib/libssl/src/crypto/des/speed.c
lib/libssl/src/crypto/idea/idea_spd.c
lib/libssl/src/crypto/opensslconf.h.in
lib/libssl/src/crypto/rc2/rc2speed.c
lib/libssl/src/crypto/rc4/rc4speed.c
lib/libssl/src/crypto/rc5/rc5speed.c
lib/libssl/src/ssl/ssltest.c

index 1721bb9..7a2a8b5 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index c41ef3b..4fbf81d 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index d650af4..0f99e0e 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 33b2c7b..f18a49b 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index a3b512e..cf78110 100644 (file)
 #include <stdio.h>
 #include <stdlib.h>
 
-#ifndef OPENSSL_SYS_MSDOS
-#if !defined(OPENSSL_SYS_VMS) || defined(__DECC)
-#ifdef OPENSSL_UNISTD
-# include OPENSSL_UNISTD
-#else
-# include <unistd.h>
-#endif
+#include <unistd.h>
 #include <math.h>
-#endif
-#endif
 #include <openssl/des.h>
 
 #ifdef OPENSSL_SYS_MSDOS               /* Visual C++ 2.1 (Windows NT/95) */
index 2df8296..c713c5e 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 #ifndef OPENSSL_SYS_MSDOS
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD
+#include <unistd.h>
 #else
 #include <io.h>
 extern void exit();
index 1616f4b..67a8edf 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 699353e..cce4be9 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 97e3745..4c92f14 100644 (file)
@@ -10,9 +10,6 @@
 #endif
 #endif
 
-#undef OPENSSL_UNISTD
-#define OPENSSL_UNISTD <unistd.h>
-
 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
 
 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
index 85cf6f6..31bfc45 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 0ebd381..a120723 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 8e363be..3bcc8f4 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 5f02e5f..1eb01f6 100644 (file)
@@ -81,7 +81,7 @@
 #include "winmain.h"
 #include "wintext.h"
 #endif
-#include OPENSSL_UNISTD
+#include <unistd.h>
 
 #undef PROG
 #define PROG s_time_main
index fb4f25e..72aa867 100644 (file)
 #include <openssl/err.h>
 #include <openssl/evp.h>
 #include <openssl/objects.h>
-#include OPENSSL_UNISTD
+#include <unistd.h>
 
 #include <signal.h>
 
index 1721bb9..7a2a8b5 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index c41ef3b..4fbf81d 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index d650af4..0f99e0e 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 33b2c7b..f18a49b 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index a3b512e..cf78110 100644 (file)
 #include <stdio.h>
 #include <stdlib.h>
 
-#ifndef OPENSSL_SYS_MSDOS
-#if !defined(OPENSSL_SYS_VMS) || defined(__DECC)
-#ifdef OPENSSL_UNISTD
-# include OPENSSL_UNISTD
-#else
-# include <unistd.h>
-#endif
+#include <unistd.h>
 #include <math.h>
-#endif
-#endif
 #include <openssl/des.h>
 
 #ifdef OPENSSL_SYS_MSDOS               /* Visual C++ 2.1 (Windows NT/95) */
index 2df8296..c713c5e 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 #ifndef OPENSSL_SYS_MSDOS
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD
+#include <unistd.h>
 #else
 #include <io.h>
 extern void exit();
index 1616f4b..67a8edf 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 699353e..cce4be9 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 97e3745..4c92f14 100644 (file)
@@ -10,9 +10,6 @@
 #endif
 #endif
 
-#undef OPENSSL_UNISTD
-#define OPENSSL_UNISTD <unistd.h>
-
 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
 
 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
index 85cf6f6..31bfc45 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 0ebd381..a120723 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 8e363be..3bcc8f4 100644 (file)
@@ -66,7 +66,7 @@
 #include <stdio.h>
 
 #include <openssl/e_os2.h>
-#include OPENSSL_UNISTD_IO
+#include <unistd.h>
 OPENSSL_DECLARE_EXIT
 
 #ifndef OPENSSL_SYS_NETWARE
index 771c50a..e56c811 100644 (file)
 #endif
 #include <openssl/bn.h>
 
-#define _XOPEN_SOURCE_EXTENDED 1 /* Or gethostname won't be declared properly
-on Compaq platforms (at least with DEC C).
-Do not try to put it earlier, or IPv6 includes
-get screwed...
-                                 */
+#define _XOPEN_SOURCE_EXTENDED 1
+/* Or gethostname won't be declared properly
+   on Compaq platforms (at least with DEC C).
+   Do not try to put it earlier, or IPv6 includes
+   get screwed... */
 
-#include OPENSSL_UNISTD
 
 #  define TEST_SERVER_CERT "../apps/server.pem"
 #  define TEST_CLIENT_CERT "../apps/client.pem"