vcpkg/ports/fontconfig/include/win32/unistd.h
2018-06-15 14:51:57 -07:00

21 lines
246 B
C

/* 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