summaryrefslogtreecommitdiff
path: root/src/time/nanosleep.c
blob: 61dd85fc6755c18d88f0ace2a86cb39de23aef3e (plain)
1
2
3
4
5
6
7
8
9
10
#include <time.h>

int nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
{
	return 0;
}

/*
POSIX(199309)
*/