1
0
mirror of https://github.com/php/php-src.git synced 2026-04-10 09:33:06 +02:00
Files
archived-php-src/win32/wfile.h
Zeev Suraski aceaabceff PHP 4.0
1999-04-07 21:05:13 +00:00

17 lines
262 B
C

#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);