Unixware doesn't have strings.h, so we need to declare strcasecmp()
[openssl.git] / apps / ca.c
index 0b3c8a4397bcf75c1c134a7829cd5bdca72f3c34..db4652069697354dbb167dc9ffb192b7ba16850a 100644 (file)
--- a/apps/ca.c
+++ b/apps/ca.c
 #ifdef OPENSSL_SYS_WINDOWS
 #define strcasecmp _stricmp
 #else
-#include <strings.h>
+#  ifdef NO_STRINGS_H
+    int        strcasecmp();
+#  else
+#    include <strings.h>
+#  endif /* NO_STRINGS_H */
 #endif
 
 #ifndef W_OK