blob: 0105e76eed4cedfd2ade25a9750d3fdb3db7e89d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <io.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#define access _access
#define WFILE_EXISTS 0
#ifndef ENOENT
#define ENOENT 136
#endif
#ifndef EINVAL
#define EINVAL 131
#endif
int readlink(char *, char *, int);
int checkroot(char *path);
|