10 lines
135 B
Text
10 lines
135 B
Text
|
|
o_text("Sleeping...\n");
|
||
|
|
|
||
|
|
# Sleep X seconds
|
||
|
|
sleep(atoi(argv(1)));
|
||
|
|
|
||
|
|
# Sleep X microseconds
|
||
|
|
#usleep(atoi(argv(1)));
|
||
|
|
|
||
|
|
o_text("Awake!\n");
|