From e6fa67fa9337d498b4383b067da04c6b6e802cd0 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 9 Sep 2003 14:48:36 +0000 Subject: Generalise the definition of strcasecmp() and strncasecmp() for platforms that don't (necessarely) have it. In the case of VMS, this means moving a couple of functions from apps/ to crypto/ and make them general (although only used privately). --- apps/apps.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'apps/apps.h') diff --git a/apps/apps.h b/apps/apps.h index 8a9c4ab0a0..0d50a94774 100644 --- a/apps/apps.h +++ b/apps/apps.h @@ -141,12 +141,6 @@ long app_RAND_load_files(char *file); /* `file' is a list of files to read, int WIN32_rename(char *oldname,char *newname); #endif -/* VMS below version 7.0 doesn't have strcasecmp() */ -#ifdef OPENSSL_SYS_VMS -#define strcasecmp(str1,str2) VMS_strcasecmp((str1),(str2)) -int VMS_strcasecmp(const char *str1, const char *str2); -#endif - #ifndef MONOLITH #define MAIN(a,v) main(a,v) -- cgit v1.2.3