Rename test to user

This commit is contained in:
Ciro Santilli
2017-06-12 06:59:19 +01:00
parent 025ba63a57
commit 95a1840683
8 changed files with 3 additions and 3 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);
}