noop/noop.c

10 lines
90 B
C
Raw Normal View History

2022-05-31 14:46:31 +01:00
#include <unistd.h>
int main() {
while (1) {
pause();
}
return 0;
}