Files
linux-kernel-module-cheat/userland/sleep_forever.c
Ciro Santilli 六四事件 法轮功 1a0d15ca86 userland: convert make to python
2019-03-12 10:01:38 +00:00

12 lines
217 B
C

/* https://github.com/cirosantilli/linux-kernel-module-cheat#sleep_forever-out */
#define _XOPEN_SOURCE 700
#include <stdio.h>
#include <unistd.h>
int main(void) {
puts(__FILE__);
while (1)
sleep(0xFFFFFFFF);
}