Files
RedBear-OS/include/bits/unistd.h
T
2018-10-28 13:24:34 +01:00

18 lines
277 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, ...);
#ifdef __cplusplus
} // extern "C"
#endif
#endif