FileIO Schema started

This commit is contained in:
felsabbagh3
2019-11-12 00:31:30 -05:00
parent 7ed88ce4c1
commit ef83285c6c
23 changed files with 81258 additions and 26 deletions

27
runtime/fileIo/fileio.c Normal file
View File

@@ -0,0 +1,27 @@
#include "fileio.h"
void __attribute__ ((section (".FileIO"))) vx_close()
{
}
void __attribute__ ((section (".FileIO"))) vx_fstat()
{
}
void __attribute__ ((section (".FileIO"))) vx_isatty()
{
}
void __attribute__ ((section (".FileIO"))) vx_read()
{
}
void __attribute__ ((section (".FileIO"))) vx_write()
{
}

22
runtime/fileIo/fileio.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef FILE_IOO
#define FILE_IOO
#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>
void vx_close();
void vx_fstat();
void vx_isatty();
void vx_read();
void vx_write();
#endif