blob: 07c3afde1efddfe73cc29c0a1c6a3a5517f6c2d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|