summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2002-10-13 17:01:31 +0000
committerPeter Johnson <peter@tortall.net>2002-10-13 17:01:31 +0000
commitd0fa038137fce705f49e0383714ef8caa46499fb (patch)
tree60aa7436eae316a2766d65bf39341985c5f896b0 /util.h
parentc5bfd97db63102c7135ed48abec8216429063f48 (diff)
downloadyasm-d0fa038137fce705f49e0383714ef8caa46499fb.tar.gz
Remove obsolete references to HAVE_GNU_C_LIBRARY which were causing build
breakage on some Linux platforms. svn path=/trunk/yasm/; revision=762
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.h b/util.h
index 51bc282e..6b9286af 100644
--- a/util.h
+++ b/util.h
@@ -72,7 +72,7 @@ int mergesort(void *base, size_t nmemb, size_t size,
int (*compar)(const void *, const void *));
#endif
-#if !defined(HAVE_STRSEP) || defined(HAVE_GNU_C_LIBRARY) || defined(lint)
+#if !defined(HAVE_STRSEP) || defined(lint)
/*@null@*/ char *strsep(char **stringp, const char *delim);
#endif
@@ -88,7 +88,7 @@ int mergesort(void *base, size_t nmemb, size_t size,
# endif
#endif
-#if defined(USE_OUR_OWN_STRCASECMP) || defined(HAVE_GNU_C_LIBRARY) || defined(lint)
+#if defined(USE_OUR_OWN_STRCASECMP) || defined(lint)
int strcasecmp(const char *s1, const char *s2);
int strncasecmp(const char *s1, const char *s2, size_t n);
#endif