8 lines
135 B
C
8 lines
135 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main(int argc, char const *argv[]) {
|
||
|
sleep(5);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|