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