* string/tst-strtok.c (main): Fix error messages.

2001-02-22  Andreas Jaeger  <aj@suse.de>
This commit is contained in:
Andreas Jaeger 2001-02-22 13:46:25 +00:00
parent bcbd6c737c
commit ab5dd2d9b4
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-02-22 Andreas Jaeger <aj@suse.de>
* string/tst-strtok.c (main): Fix error messages.
2001-02-22 Andreas Jaeger <aj@suse.de>
* math/Makefile: Remove omit-long-double-fcts.

View File

@ -10,12 +10,12 @@ main (void)
if (strtok (buf, " ") != NULL)
{
puts ("first strtok call did return NULL");
puts ("first strtok call did not return NULL");
result = 1;
}
else if (strtok (NULL, " ") != NULL)
{
puts ("second strtok call did return NULL");
puts ("second strtok call did not return NULL");
result = 1;
}