11 lines
116 B
C
11 lines
116 B
C
#include <stdio.h>
|
|
|
|
#include "../libs/time.h"
|
|
|
|
int main() {
|
|
printf("Wait 5 seconds...\n");
|
|
wait(5);
|
|
|
|
return 0;
|
|
}
|