mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
23 lines
347 B
C
23 lines
347 B
C
#define _POSIX_
|
|
#include <windows.h>
|
|
#include <io.h>
|
|
#include <fcntl.h>
|
|
|
|
#ifndef ssize_t
|
|
# define ssize_t SSIZE_T
|
|
#endif
|
|
#ifndef mode_t
|
|
# define mode_t int
|
|
#endif
|
|
#ifndef snprintf
|
|
# define snprintf _snprintf
|
|
#endif
|
|
#ifndef mkstemp
|
|
# define mkstemp(t) _creat(_mktemp(t), _S_IREAD|_S_IWRITE)
|
|
#endif
|
|
/*
|
|
#ifndef fseeko
|
|
# define fseeko fseek
|
|
#endif
|
|
*/
|