mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
Rationale: we already had a non buildroot build system, maintaining both will be hard, and having short paths is more awesome.
11 lines
191 B
C
11 lines
191 B
C
/* https://github.com/cirosantilli/linux-kernel-module-cheat#sleep_forever-out */
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void) {
|
|
puts(__FILE__);
|
|
while (1)
|
|
sleep(0xFFFFFFFF);
|
|
}
|