diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-28 23:52:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-28 23:52:21 +0000 |
commit | 50fd913bece94eba2aa8394b1b6958708e4dcd4d (patch) | |
tree | d5022572bcc4485df4b3146e0188409ba600d6a0 | |
parent | 924102e7a6fea2d59ae535920d2cc188b6c81c49 (diff) | |
download | glibc-50fd913bece94eba2aa8394b1b6958708e4dcd4d.tar.gz glibc-50fd913bece94eba2aa8394b1b6958708e4dcd4d.tar.xz glibc-50fd913bece94eba2aa8394b1b6958708e4dcd4d.zip |
Update.
* include/libintl.h: Include <locale.h> since libintl.h doesn't if we are not optimizing.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | include/libintl.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index d281eb3cf3..5289a5447e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2000-08-28 Ulrich Drepper <drepper@redhat.com> + * include/libintl.h: Include <locale.h> since libintl.h doesn't if + we are not optimizing. + * sysdeps/unix/sysv/linux/powerpc/sysdep.h: Protect against double inclusion. diff --git a/include/libintl.h b/include/libintl.h index 0f77658a0e..dc54ccfc7b 100644 --- a/include/libintl.h +++ b/include/libintl.h @@ -1,5 +1,6 @@ #ifndef _LIBINTL_H #include <intl/libintl.h> +#include <locale.h> /* Now define the internal interfaces. */ extern char *__gettext (__const char *__msgid); |