mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-01-30 19:24:07 +00:00
config.h.W32.template (pid_t): Add a definition for 64-bit Windows builds that don't use GCC.
This commit is contained in:
parent
4e4d8f246f
commit
94bda718c4
1 changed files with 4 additions and 0 deletions
|
@ -426,8 +426,12 @@ this program. If not, see <http://www.gnu.org/licenses/>. */
|
|||
/* Define to `int' if <sys/types.h> does not define. */
|
||||
/* GCC 4.x reportedly defines pid_t. */
|
||||
#ifndef _PID_T_
|
||||
#ifdef _WIN64
|
||||
#define pid_t __int64
|
||||
#else
|
||||
#define pid_t int
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Define to `int' if <sys/types.h> doesn't define. */
|
||||
#define uid_t int
|
||||
|
|
Loading…
Reference in a new issue