12 lines
148 B
C
12 lines
148 B
C
#include <stdint.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
int tmp = 10;
|
|
while (tmp != 0) {
|
|
sleep(1);
|
|
tmp--;
|
|
}
|
|
return 0;
|
|
}
|