2
0

unistd.h 277 B

1234567891011121314151617
  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. #ifdef __cplusplus
  10. } // extern "C"
  11. #endif
  12. #endif