blob: 03760116625b59b1ea730c867111285b8a0f6720 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include <limits.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include "psxglue.h"
extern const struct __psx_vtbl * __psx_vtbl;
char * realpath(const char * restrict filename, char * restrict resolved)
{
int ecode;
char buf[PATH_MAX];
ecode = filename
? __psx_vtbl->fs_rpath(
AT_FDCWD,filename,
O_NONBLOCK|O_CLOEXEC,
buf,sizeof(buf))
: -EINVAL;
if (ecode < 0) {
errno = -ecode;
return 0;
}
return resolved
? strcpy(resolved,buf)
: strdup(buf);
}
|