9 lines
90 B
C
9 lines
90 B
C
#include <unistd.h>
|
|
|
|
int main() {
|
|
while (1) {
|
|
pause();
|
|
}
|
|
|
|
return 0;
|
|
}
|