Added things, like stuff for hosted cross-comp
This commit is contained in:
parent
382f19732a
commit
c1b4221663
1 changed files with 9 additions and 0 deletions
|
@ -51,6 +51,8 @@
|
||||||
#define _XOPEN_ENH_I18N 700
|
#define _XOPEN_ENH_I18N 700
|
||||||
#define _XOPEN_SHM 700
|
#define _XOPEN_SHM 700
|
||||||
|
|
||||||
|
#include <stddef.h>
|
||||||
|
|
||||||
#define R_OK 01
|
#define R_OK 01
|
||||||
#define W_OK 02
|
#define W_OK 02
|
||||||
#define X_OK 04
|
#define X_OK 04
|
||||||
|
@ -63,4 +65,11 @@
|
||||||
#define F_TLOCK 03
|
#define F_TLOCK 03
|
||||||
#define F_ULOCK 04
|
#define F_ULOCK 04
|
||||||
|
|
||||||
|
#include <types/pid_t.h>
|
||||||
|
|
||||||
|
pid_t fork(void);
|
||||||
|
int execv(const char *, char *const []);
|
||||||
|
int execve(const char *, char *const [], char *const []);
|
||||||
|
int execvp(const char *, char *const []);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue