iconv: add euro symbol to GBK as single byte 0x80
[musl.git] / src / time / nanosleep.c
blobbc9f7895fa0878be08bdfc01634eede6cbcf81b1
1 #include <time.h>
2 #include "syscall.h"
4 int nanosleep(const struct timespec *req, struct timespec *rem)
6 return __syscall_ret(-__clock_nanosleep(CLOCK_REALTIME, 0, req, rem));