lclint-ize gettext().

svn path=/trunk/yasm/; revision=331
This commit is contained in:
Peter Johnson 2001-11-16 22:55:26 +00:00
parent 9f97bcd9d0
commit 4df0191de8
3 changed files with 12 additions and 0 deletions

View file

@ -36,7 +36,11 @@
# include <string.h>
#endif
#if defined(lint)
/*@dependent@*/ const char *gettext(const char *s);
#else
#include <libintl.h>
#endif
#define _(String) gettext(String)
#if !defined(HAVE_MERGESORT)

View file

@ -36,7 +36,11 @@
# include <string.h>
#endif
#if defined(lint)
/*@dependent@*/ const char *gettext(const char *s);
#else
#include <libintl.h>
#endif
#define _(String) gettext(String)
#if !defined(HAVE_MERGESORT)

4
util.h
View file

@ -36,7 +36,11 @@
# include <string.h>
#endif
#if defined(lint)
/*@dependent@*/ const char *gettext(const char *s);
#else
#include <libintl.h>
#endif
#define _(String) gettext(String)
#if !defined(HAVE_MERGESORT)