struct timespec {
	seconds Int
	nanoseconds Int
}

nanosleep(duration *timespec) -> Int {
	return syscall(35, duration, 0)
}