unistd.h 331 B

123456789101112131415161718
  1. #ifndef _BITS_UNISTD_H
  2. #define _BITS_UNISTD_H
  3. #define _POSIX_VERSION 200809L
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. int execl(const char *path, const char* argv0, ...);
  8. int execle(const char *path, const char* argv0, ...);
  9. int execlp(const char *file, const char* argv0, ...);
  10. #ifdef __cplusplus
  11. } // extern "C"
  12. #endif
  13. #endif