Files
linux-kernel-module-cheat/baremetal/infinite_loop.c
2019-05-05 00:00:00 +00:00

5 lines
49 B
C

int main(void) {
while(1) {}
return 0;
}