From 75ed03c960bf6613d13435499cba0bddc79dc3fd Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 29 Jun 1999 19:50:54 +0000 Subject: See ChangeLog: Tue Jun 29 21:44:25 CEST 1999 Werner Koch --- include/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/util.h') diff --git a/include/util.h b/include/util.h index 9a4f1ffb5..d266af412 100644 --- a/include/util.h +++ b/include/util.h @@ -175,8 +175,6 @@ char *native_to_utf8( const char *string ); char *utf8_to_native( const char *string ); int check_utf8_string( const char *string ); -#define stricmp(a,b) strcasecmp((a),(b)) - #ifndef HAVE_MEMICMP int memicmp( const char *a, const char *b, size_t n ); #endif @@ -192,7 +190,9 @@ char *strlwr(char *a); #ifndef HAVE_MEMMOVE #define memmove(d, s, n) bcopy((s), (d), (n)) #endif - +#ifndef HAVE_STRICMP + #define stricmp(a,b) strcasecmp( (a), (b) ) +#endif /**** other missing stuff ****/ #ifndef HAVE_ATEXIT /* For SunOS */ -- cgit v1.2.3