freebsd-src/contrib/mandoc/test-nanosleep.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
239 B
C
Raw Normal View History

#include <stdio.h>
#include <time.h>
int
main(void)
{
struct timespec timeout;
timeout.tv_sec = 0;
timeout.tv_nsec = 100000000; /* 0.1 seconds */
if (nanosleep(&timeout, NULL)) {
perror("nanosleep");
return 1;
}
return 0;
}