initial commit
This commit is contained in:
commit
b660e15658
2 changed files with 12 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/sleepsh
|
11
main.c
Normal file
11
main.c
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
while (1) {
|
||||||
|
sleep(20);
|
||||||
|
printf("*");
|
||||||
|
fflush(NULL);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue