aboutsummaryrefslogtreecommitdiff
path: root/ports/fontconfig/include/unistd.h
blob: 7d04abe2925b08e99cfeea74a81f026b69ba9258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*  Minimal unistd.h, just to get fontconfig to compile */
#ifndef UNISTD_H
#define UNISTD_H

#include <io.h>

#ifndef R_OK
#define R_OK 4
#endif

#ifndef W_OK
#define W_OK 2
#endif

#ifndef F_OK
#define F_OK 0
#endif

typedef int mode_t;

#endif