1/* 2We implement these (or stub them) in our runtime, but there's no headers available with them 3and declarations are required now for clang 15. So we defined them here. This may get 4refactored. 5*/ 6 7int mkstemp(char *template); 8pid_t fork(void); 9int execlp(const char *file, const char *arg, ...); 10int fchmod(int fd, mode_t mode); 11uid_t getuid(void); 12int execvp(const char *file, char *const argv[]); 13 14