summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2002-03-23 22:50:49 +0000
committerPeter Johnson <peter@tortall.net>2002-03-23 22:50:49 +0000
commitbccc5e7ec7c21be3e9d58cbcda96e66e8e8cfd83 (patch)
tree84ed667eeb8af1a13e18e0dbd9403a1cf02f1ad6 /util.h
parent04df0be8426eab29b94774a8ca9210f2ec6e371d (diff)
downloadyasm-bccc5e7ec7c21be3e9d58cbcda96e66e8e8cfd83.tar.gz
When using Splint, don't try to use gettext().
svn path=/trunk/yasm/; revision=547
Diffstat (limited to 'util.h')
-rw-r--r--util.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/util.h b/util.h
index 2dbd480f..80d762db 100644
--- a/util.h
+++ b/util.h
@@ -42,8 +42,7 @@
#endif
#if defined(lint)
-/*@dependent@*/ const char *gettext(const char *s);
-#define _(String) gettext(String)
+#define _(String) String
#else
# ifdef HAVE_LOCALE_H
# include <locale.h>