16 lines
206 B
C
16 lines
206 B
C
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
#include <syscall.h>
|
|
|
|
unsigned int
|
|
sleep(unsigned int seconds)
|
|
{
|
|
OSThreadSleep(seconds);
|
|
|
|
// Should return left over time if woke up early
|
|
return 0;
|
|
}
|
|
|