13 lines
265 B
C
13 lines
265 B
C
#ifndef MINIMALSYS_H
|
|
#include <stdint.h>
|
|
|
|
void exit(int8_t status);
|
|
|
|
#define STDIO 1
|
|
#define STDERR 2
|
|
intptr_t write(int32_t fd, const void* buf, intptr_t size);
|
|
//intptr_t read(int32_t fd, const void* buf, intptr_t size);
|
|
|
|
uint32_t fork();
|
|
#endif // !MINIMALSYS_H
|