9 lines
98 B
C
9 lines
98 B
C
#include <unistd.h>
|
|
|
|
int main(int argc,char **argv)
|
|
{
|
|
for(;;)
|
|
{
|
|
sleep(10);
|
|
}
|
|
} |