mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 17:12:03 +00:00
Fix incorrect type of pid_t on Windows MSVC.
This commit is contained in:
parent
780d71f559
commit
107ee8edc3
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
typedef unsigned pid_t;
|
typedef int pid_t;
|
||||||
#endif
|
#endif
|
||||||
typedef unsigned gid_t;
|
typedef unsigned gid_t;
|
||||||
typedef unsigned uid_t;
|
typedef unsigned uid_t;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue