Fixed nanosleep function sig test.

[SVN r11389]
This commit is contained in:
John Maddock
2001-10-16 11:34:30 +00:00
parent f49ba073ca
commit 5e28fcc6ab

View File

@ -16,7 +16,8 @@ void f()
{
// this is never called, it just has to compile:
timespec ts = {0};
int res = nanosleep(&ts);
timespec rm;
int res = nanosleep(&ts, &rm);
}
int test()