diff options
author | Jim Meyering <jim@meyering.net> | 1996-06-14 03:30:28 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-06-14 03:30:28 +0000 |
commit | 482f161a5c6b5f4f21493a84de70b1a8fecbb226 (patch) | |
tree | 8b00ebbb63d24811174158fdaa10176bfd35d811 /intl/l10nflist.c | |
parent | 9b647bea250faf31f6e8d1a9cbe1dd362de73218 (diff) | |
download | idutils-482f161a5c6b5f4f21493a84de70b1a8fecbb226.tar.gz idutils-482f161a5c6b5f4f21493a84de70b1a8fecbb226.tar.bz2 idutils-482f161a5c6b5f4f21493a84de70b1a8fecbb226.zip |
merge with 0.10.18
Diffstat (limited to 'intl/l10nflist.c')
-rw-r--r-- | intl/l10nflist.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/intl/l10nflist.c b/intl/l10nflist.c index dc763cc..a874ef2 100644 --- a/intl/l10nflist.c +++ b/intl/l10nflist.c @@ -47,6 +47,15 @@ Boston, MA 02111-1307, USA. */ #include "loadinfo.h" +/* On some strange systems still no definition of NULL is found. Sigh! */ +#ifndef NULL +# if defined __STDC__ && __STDC__ +# define NULL ((void *) 0) +# else +# define NULL 0 +# endif +#endif + /* @@ end of prolog @@ */ #ifdef _LIBC |