Upload files to "/"
This commit is contained in:
parent
e2d498ecc4
commit
50c928f6f6
3 changed files with 76 additions and 0 deletions
8
main.c
Normal file
8
main.c
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue