Stub shell

This commit is contained in:
Alex
2023-05-03 06:39:20 +03:00
parent 2523ad0911
commit 5a017b6626
3 changed files with 89 additions and 0 deletions

9
apps/system/sh/sh.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdlib.h>
#include <stdio.h>
#include <aux.h>
int main(int argc, char *argv[], char *envp[])
{
printf("Hello, world!\n");
return 0;
}