blob: 2e79406478c751c08e439be74efbe9eb17f057c6 (
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);
|