8 lines
No EOL
132 B
Text
8 lines
No EOL
132 B
Text
struct timespec {
|
|
seconds int64
|
|
nanoseconds int64
|
|
}
|
|
|
|
nanosleep(duration *timespec) -> int {
|
|
return syscall(35, duration, 0)
|
|
} |