unistd.h 947 B

1234567891011121314151617181920212223242526
  1. /*
  2. * This file is part of Jehanne.
  3. *
  4. * Copyright (C) 2016 Giacomo Tesio <giacomo@tesio.it>
  5. *
  6. * Jehanne is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, version 2 of the License.
  9. *
  10. * Jehanne is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with Jehanne. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #ifndef _APW_UNISTD_H
  19. #define _APW_UNISTD_H
  20. #ifndef HIDE_JEHANNE_APW
  21. #include "libc.wrapper.h"
  22. extern int execv(const char*, char* const[]);
  23. extern int execve(const char*, char* const[], char* const[]);
  24. extern int execvp(const char*, char* const[]);
  25. #endif
  26. #endif