diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-13 22:42:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-13 22:42:45 +0000 |
commit | 355561ef14b974e65390dbedb192f1316b0c5410 (patch) | |
tree | b57e5a59bf742bf6375f207787c9ec70e831bd75 | |
parent | acc8ad639fbd39a029397ecb7918bf805576f86a (diff) | |
download | glibc-355561ef14b974e65390dbedb192f1316b0c5410.tar.gz glibc-355561ef14b974e65390dbedb192f1316b0c5410.tar.xz glibc-355561ef14b974e65390dbedb192f1316b0c5410.zip |
Update.
* intl/tst-codeset.c: Include string.h to get prototype for strcmp(). 2001-04-13 Jes Sorensen <jes@linuxcare.com>
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | intl/tst-codeset.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 0ac34ed696..2209cb784e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2001-04-13 Jes Sorensen <jes@linuxcare.com> + * intl/tst-codeset.c: Include string.h to get prototype for strcmp(). + +2001-04-13 Jes Sorensen <jes@linuxcare.com> + * sysdeps/unix/sysv/linux/ia64/bits/siginfo.h: Add __pad0 to explicitly pad struct siginfo instead of relying on compiler padding. diff --git a/intl/tst-codeset.c b/intl/tst-codeset.c index 9bdcd39cc9..8ed8ed57c9 100644 --- a/intl/tst-codeset.c +++ b/intl/tst-codeset.c @@ -21,6 +21,7 @@ #include <locale.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> int main (void) |