mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
lclint-ize gettext().
svn path=/trunk/yasm/; revision=331
This commit is contained in:
parent
9f97bcd9d0
commit
4df0191de8
3 changed files with 12 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
4
util.h
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue