summaryrefslogtreecommitdiffstats
path: root/crypto/ui
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-06-05 20:29:26 +0000
committerRichard Levitte <levitte@openssl.org>2001-06-05 20:29:26 +0000
commit30a54b90854f41d2520ba9177617e31b18525d84 (patch)
tree2bbefb0f83760b800ab4f2cb140fb15ede7b4d52 /crypto/ui
parent1e7e62f8cdda90328531b3a7c31fb68240b6245f (diff)
Defining __USE_XOPEN_EXTENDED was the wrong thing. Instead, define
_XOPEN_SOURCE.
Diffstat (limited to 'crypto/ui')
-rw-r--r--crypto/ui/ui_lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c
index f8881dee05..f55a79c740 100644
--- a/crypto/ui/ui_lib.c
+++ b/crypto/ui/ui_lib.c
@@ -63,7 +63,8 @@
# define _XOPEN_SOURCE_EXTENDED
#endif
#ifdef OPENSSL_SYS_UNIX
-# define __USE_XOPEN_EXTENDED /* For Linux and probably anything GNU */
+# define _XOPEN_SOURCE
+# define _XOPEN_SOURCE_EXTENDED /* For Linux and probably anything GNU */
#endif
#include <string.h>