config.h.W32.template (pid_t): Add a definition for 64-bit Windows builds that don't use GCC.

This commit is contained in:
Eli Zaretskii 2010-07-09 11:38:01 +00:00
parent 4e4d8f246f
commit 94bda718c4

View file

@ -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