initial commit

This commit is contained in:
DarkCat09 2024-10-14 16:43:16 +04:00
commit b660e15658
Signed by: DarkCat09
GPG key ID: BD3CE9B65916CD82
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/sleepsh

11
main.c Normal file
View file

@ -0,0 +1,11 @@
#include <stdio.h>
#include <unistd.h>
int main() {
while (1) {
sleep(20);
printf("*");
fflush(NULL);
}
return 0;
}