c_cross_pack/examples/wait.c

11 lines
119 B
C
Raw Normal View History

2025-02-11 07:16:05 +00:00
#include <stdio.h>
#include "../libs/time.h"
int main() {
printf("Wait 5 seconds...\n");
wait(5000);
2025-02-11 07:16:05 +00:00
return 0;
}