ioctl begins to work

This commit is contained in:
Ciro Santilli
2017-06-11 22:33:01 +01:00
parent bf538cd3a6
commit 025ba63a57
4 changed files with 38 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
/* Replacement init example for when we feel like running
* a single non-interactive single executable Linux distro. */
#include <stdio.h>
#include <unistd.h>
int main(void) {
puts("hello world");
while (1)
sleep(0xFFFFFFFF);
}