Commit ace5f3c6 authored by Martin Fuchs's avatar Martin Fuchs Committed by Alexandre Julliard

Define pid_t and ssize_t if not already defined.

parent d5cf8331
......@@ -61,4 +61,14 @@ typedef unsigned long u_long;
#define mode_t _mode_t
#define off_t _off_t
#ifndef _PID_T_DEFINED
typedef int pid_t;
#define _PID_T_DEFINED
#endif
#ifndef _SSIZE_T_DEFINED
typedef int ssize_t;
#define _SSIZE_T_DEFINED
#endif
#endif /* __WINE_SYS_TYPES_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment