8 lines
97 B
C
8 lines
97 B
C
#include <unistd.h>
|
|
|
|
int main (int argc, char **argv) {
|
|
while(1)
|
|
usleep(5);
|
|
|
|
return 0;
|
|
}
|