Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/wapython
Path: blob/main/core/libedit/src/extra_config.h
1070 views
1
/*
2
We implement these (or stub them) in our runtime, but there's no headers available with them
3
and declarations are required now for clang 15. So we defined them here. This may get
4
refactored.
5
*/
6
7
int mkstemp(char *template);
8
pid_t fork(void);
9
int execlp(const char *file, const char *arg, ...);
10
int fchmod(int fd, mode_t mode);
11
uid_t getuid(void);
12
int execvp(const char *file, char *const argv[]);
13
14