blob: 3445b7f80b1a862576026ef97d65606f38094418 [file] [log] [blame]
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08001#include <time.h>
2#include "syscall.h"
3#include "libc.h"
4
George Kulakowski17e3b042016-02-18 15:59:50 -08005int nanosleep(const struct timespec* req, struct timespec* rem) {
6 return syscall_cp(SYS_nanosleep, req, rem);
Viet-Trung Luu96b05c12016-01-11 11:26:36 -08007}