diff --git a/main.c b/main.c index d711a6a..4021bf9 100644 --- a/main.c +++ b/main.c @@ -1,8 +1,13 @@ +#define SLEEP_SECONDS 20 + #include int main() { while (1) { - sleep(20); + sleep(SLEEP_SECONDS); + // fd 1 = stdout fd number + // "*" = symbol to print + // 1 = size of a string to print write(1, "*", 1); } return 0;