diff options
author | Werner Koch <[email protected]> | 1999-06-29 19:50:54 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1999-06-29 19:50:54 +0000 |
commit | 75ed03c960bf6613d13435499cba0bddc79dc3fd (patch) | |
tree | b2f1fcd92a2dca9c77ae16f98395c04fa9476eb2 /include/util.h | |
parent | See ChangeLog: Sat Jun 26 13:54:43 CEST 1999 Werner Koch (diff) | |
download | gnupg-75ed03c960bf6613d13435499cba0bddc79dc3fd.tar.gz gnupg-75ed03c960bf6613d13435499cba0bddc79dc3fd.zip |
See ChangeLog: Tue Jun 29 21:44:25 CEST 1999 Werner Koch
Diffstat (limited to '')
-rw-r--r-- | include/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |