MyOS Libc
spawn.h
1 #ifndef SPAWN_H
2 #define SPAWN_H
3 
4 #include <sys/types.h>
5 
6 #define posix_spawn_file_actions_t int
7 #define posix_spawnattr_t int
8 
9 int posix_spawn(pid_t* pid, const char* path, const posix_spawn_file_actions_t* file_actions, const posix_spawnattr_t* attrp,
10 char* const argv[], char* const envp[]);
11 
12 #endif