blob: 4f367ca171ba60bfa95968e7b48c5224db73088a (
plain)
1
2
3
4
5
6
7
8
|
#pragma once
#include <camellia/types.h> // TODO only needed because of handle_t
int fork(void);
int close(handle_t h);
_Noreturn void exit(int);
int execv(const char *path, char *const argv[]);
|