xref: /openbsd-src/gnu/lib/libiberty/include/pex-protos.h (revision c3d06a32ae101e66e5f91584bf2c64d053884853)
1 #if !defined(PEX_PROTOS_H)
2 #define PEX_PROTOS_H
3 
4 struct pex_obj;
5 
6 extern const char *
7 pex_run (struct pex_obj *obj, int flags, const char *executable,
8        	 char * const * argv, const char *orig_outname, const char *errname,
9          int *err);
10 
11 extern int
12 pex_get_status (struct pex_obj *obj, int count, int *vector);
13 
14 extern void
15 pex_free (struct pex_obj *obj);
16 #endif
17