URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [newlib-1.18.0/] [newlib/] [libc/] [sys/] [sysvi386/] [sleep.c] - Rev 862
Go to most recent revision | Compare with Previous | Blame | View Log
#include <sys/types.h> #include <sys/signal.h> unsigned sleep(unsigned secs) { extern time_t time (time_t *); time_t t = time(0); _alarm(secs); _pause(); return (time(0) - t); }
Go to most recent revision | Compare with Previous | Blame | View Log