fixmydownloads/src/main.c

14 lines
201 B
C

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(int argc, char **argv)
{
while (1) {
printf("Hello systemd world \n");
fflush(NULL);
sleep(5);
};
return (EXIT_SUCCESS);
}