blob: 7a9614c2cf6a89f0b17417a1251ae07a9657d3cc (
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 X_OK 0
#ifndef ENOENT
#define ENOENT 136
#endif
#ifndef EINVAL
#define EINVAL 131
#endif
int readlink(char *, char *, int);
int checkroot(char *path);
|