mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
11 lines
164 B
C
11 lines
164 B
C
/* Sleeping beauty, your prince is called Ctrl + C. */
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void) {
|
|
puts(__FILE__);
|
|
while (1)
|
|
sleep(0xFFFFFFFF);
|
|
}
|