diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-25 11:14:37 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-06-25 11:14:37 +0000 |
commit | 346f3a9016179e2ee492bb7d58ce790a6ce18c84 (patch) | |
tree | 56c8af1c4c3f99633be85a00b90dda9bd8f9df63 | |
parent | fa4a36fdffe7a96c60dd5baf383e6c731a11a8c5 (diff) | |
download | glibc-346f3a9016179e2ee492bb7d58ce790a6ce18c84.zip glibc-346f3a9016179e2ee492bb7d58ce790a6ce18c84.tar.gz glibc-346f3a9016179e2ee492bb7d58ce790a6ce18c84.tar.bz2 |
* posix/tst-nanosleep.c: Include <time.h> for nanosleep
declaration.
* stdio-common/tst-fphex.c: Fix format string.
* posix/tst-nanosleep.c: Include <time.h> for nanosleep
declaration.
* stdio-common/tst-fphex.c: Fix format string.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | posix/tst-nanosleep.c | 1 | ||||
-rw-r--r-- | stdio-common/tst-fphex.c | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2003-06-25 Andreas Jaeger <aj@suse.de> + * posix/tst-nanosleep.c: Include <time.h> for nanosleep + declaration. + + * stdio-common/tst-fphex.c: Fix format string. + * posix/transbug.c: Include <string.h> for memset and strlen declarations. diff --git a/posix/tst-nanosleep.c b/posix/tst-nanosleep.c index a087db8..0fa0135 100644 --- a/posix/tst-nanosleep.c +++ b/posix/tst-nanosleep.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <unistd.h> #include <sys/time.h> +#include <time.h> /* Test that nanosleep() does sleep. */ diff --git a/stdio-common/tst-fphex.c b/stdio-common/tst-fphex.c index aca2c05..212e4ed 100644 --- a/stdio-common/tst-fphex.c +++ b/stdio-common/tst-fphex.c @@ -39,7 +39,7 @@ do_test (int argc, char **argv) int n = snprintf (buf, sizeof buf, t->fmt, t->value); if (n != strlen (t->expect) || strcmp (buf, t->expect) != 0) { - printf ("%s\tExpected \"%s\" (%u)\n\tGot \"%s\" (%d, %u)\n", + printf ("%s\tExpected \"%s\" (%Zu)\n\tGot \"%s\" (%d, %Zu)\n", t->fmt, t->expect, strlen (t->expect), buf, n, strlen (buf)); result = 1; } |