vcpkg/ports/fontconfig/include/unistd.h

21 lines
246 B
C
Raw Normal View History

2017-01-20 01:06:42 +08:00
/* 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