windows-amd64-prebuilt-libr.../vcpkg/ports/fontconfig/include/win32/unistd.h
2020-10-10 14:36:42 +02: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