Upload files to "/"

This commit is contained in:
pathetic 2025-05-12 23:01:59 +02:00
parent e2d498ecc4
commit 50c928f6f6
3 changed files with 76 additions and 0 deletions

8
main.c Normal file
View file

@ -0,0 +1,8 @@
#include "headers/nstdo.h"
extern long sys_write(int fd, const void *buf, size_t count);
int main(void) {
const char msg[] = "Hello, World!\n";
sys_write(1, msg, sizeof(msg)-1);
return 0;
}