初始化
This commit is contained in:
13
LFtid1056/lib/libuv-v1.51.0/docs/code/cgi/tick.c
Normal file
13
LFtid1056/lib/libuv-v1.51.0/docs/code/cgi/tick.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main() {
|
||||
int i;
|
||||
for (i = 0; i < 10; i++) {
|
||||
printf("tick\n");
|
||||
fflush(stdout);
|
||||
sleep(1);
|
||||
}
|
||||
printf("BOOM!\n");
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user