19 lines
327 B
C
Raw Normal View History

2024-11-11 15:19:36 +02:00
#ifndef _YGGDRASIL_UNISTD_H
#define _YGGDRASIL_UNISTD_H 1
2024-11-15 11:14:08 +02:00
#if defined(__cplusplus)
extern "C" {
#endif
2024-11-11 15:19:36 +02:00
int execl(const char *path, const char *arg, ...);
int execlp(const char *file, const char *arg, ...);
int execle(const char *path, const char *arg, ...);
2024-11-14 12:20:15 +02:00
extern char **environ;
2024-11-15 11:14:08 +02:00
#if defined(__cplusplus)
}
#endif
2024-11-11 15:19:36 +02:00
#endif