diff options
Diffstat (limited to 'system/include/compat/unistd.h')
-rw-r--r-- | system/include/compat/unistd.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/include/compat/unistd.h b/system/include/compat/unistd.h new file mode 100644 index 00000000..07c3afde --- /dev/null +++ b/system/include/compat/unistd.h @@ -0,0 +1,16 @@ +#ifndef _COMPAT_UNISTD_H +#define _COMPAT_UNISTD_H + +#ifdef __cplusplus +extern "C" { +#endif + +char * getwd(char *__buf ); + +#ifdef __cplusplus +} +#endif + +#include_next <unistd.h> + +#endif |