mirror of
https://github.com/nginx/nginx.git
synced 2025-06-11 04:12:40 +08:00
Fixing conflict with SDK off_t definition.
This commit is contained in:
parent
1472e7964b
commit
5f81070523
@ -126,8 +126,11 @@ typedef unsigned __int64 uint64_t;
|
|||||||
typedef int intptr_t;
|
typedef int intptr_t;
|
||||||
typedef u_int uintptr_t;
|
typedef u_int uintptr_t;
|
||||||
|
|
||||||
typedef int ssize_t;
|
/* Windows defines off_t as long, which is 32-bit */
|
||||||
typedef __int64 off_t;
|
typedef __int64 off_t;
|
||||||
|
#define _OFF_T_DEFINED
|
||||||
|
|
||||||
|
typedef int ssize_t;
|
||||||
typedef uint32_t in_addr_t;
|
typedef uint32_t in_addr_t;
|
||||||
typedef u_short in_port_t;
|
typedef u_short in_port_t;
|
||||||
typedef int sig_atomic_t;
|
typedef int sig_atomic_t;
|
||||||
|
Loading…
Reference in New Issue
Block a user