Files
RedBear-OS/include/bits/unistd.h
T
Jeremy Soller 9790289aec Add execlp
2018-11-22 20:43:04 -07:00

19 lines
331 B
C

#ifndef _BITS_UNISTD_H
#define _BITS_UNISTD_H
#define _POSIX_VERSION 200809L
#ifdef __cplusplus
extern "C" {
#endif
int execl(const char *path, const char* argv0, ...);
int execle(const char *path, const char* argv0, ...);
int execlp(const char *file, const char* argv0, ...);
#ifdef __cplusplus
} // extern "C"
#endif
#endif