add a missing section header table index conversion
[tangerine.git] / compiler / clib / include / process.h
blob089c275fcc3f2c3ef5b241c64ed2f38d940896f8
1 #ifndef _PROCESS_H_
2 #define _PROCESS_H_
4 /*
5 Copyright © 2003, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <sys/cdefs.h>
11 __BEGIN_DECLS
13 #define P_WAIT 0 /* Wait for the child process to terminate. */
14 #define P_NOWAIT 1 /* Execute the parent and the child concurrently. */
15 #define P_OVERLAY 2 /* Replace parent's image with child's. Same as exec*(3). */
17 int spawnv(int mode, const char *path, char *const argv[]);
18 int spawnvp(int mode, const char *path, char *const argv[]);
20 __END_DECLS
21 #endif /* _PROCESS_H_ */