summaryrefslogtreecommitdiffstats
path: root/intl/textdomain.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-01-15 14:59:52 +0000
committerBruno Haible <bruno@clisp.org>2001-01-15 14:59:52 +0000
commite0560b43903ad644e19cff68c3b744a39d891613 (patch)
tree06626d434c05c2100b54330c3c6b6ff82926b803 /intl/textdomain.c
parent4d48f86a3ab0114dce08c731553f90727f7dde03 (diff)
downloadexternal_gettext-e0560b43903ad644e19cff68c3b744a39d891613.zip
external_gettext-e0560b43903ad644e19cff68c3b744a39d891613.tar.gz
external_gettext-e0560b43903ad644e19cff68c3b744a39d891613.tar.bz2
Portability fixes for K&R C compilers, SunOS "make" and others.
Diffstat (limited to 'intl/textdomain.c')
-rw-r--r--intl/textdomain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/intl/textdomain.c b/intl/textdomain.c
index 302554d..55bb550 100644
--- a/intl/textdomain.c
+++ b/intl/textdomain.c
@@ -1,5 +1,5 @@
/* Implementation of the textdomain(3) function.
- Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1995-1998, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -19,11 +19,11 @@
# include <config.h>
#endif
-#if defined STDC_HEADERS || defined _LIBC
+#if defined HAVE_STDLIB_H || defined _LIBC
# include <stdlib.h>
#endif
-#if defined STDC_HEADERS || defined HAVE_STRING_H || defined _LIBC
+#if defined HAVE_STRING_H || defined _LIBC
# include <string.h>
#else
# include <strings.h>