summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2001-12-24 18:01:12 +0000
committerPeter Johnson <peter@tortall.net>2001-12-24 18:01:12 +0000
commit855891dac2d0d18b4683410773a122bd7e094119 (patch)
tree85bb4353a5348ba579455b21d2d464020d00ffc5 /util.h
parentbbd5666569171cd7d284b33fe176cad12cc74f41 (diff)
downloadyasm-855891dac2d0d18b4683410773a122bd7e094119.tar.gz
Fix build problem on Linux with toascii() define.
svn path=/trunk/yasm/; revision=393
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.h b/util.h
index 50b6a310..abd7f539 100644
--- a/util.h
+++ b/util.h
@@ -94,7 +94,7 @@ int strcasecmp(const char *s1, const char *s2);
int strncasecmp(const char *s1, const char *s2, size_t n);
#endif
-#if !defined(HAVE_TOASCII) || defined(HAVE_GNU_C_LIBRARY) || defined(lint)
+#if !defined(HAVE_TOASCII) || defined(lint)
# define toascii(c) ((c) & 0x7F)
#endif