mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
13 lines
185 B
C
13 lines
185 B
C
#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);
|
|
}
|