diff --git a/ChangeLog b/ChangeLog index feb19a7e48..d0accd10cc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2003-06-25 Andreas Jaeger + * posix/tst-nanosleep.c: Include for nanosleep + declaration. + + * stdio-common/tst-fphex.c: Fix format string. + * posix/transbug.c: Include for memset and strlen declarations. diff --git a/posix/tst-nanosleep.c b/posix/tst-nanosleep.c index a087db86ff..0fa0135bc6 100644 --- a/posix/tst-nanosleep.c +++ b/posix/tst-nanosleep.c @@ -20,6 +20,7 @@ #include #include #include +#include /* Test that nanosleep() does sleep. */ diff --git a/stdio-common/tst-fphex.c b/stdio-common/tst-fphex.c index aca2c0500d..212e4ed9ec 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; }