Commit ad24b8e6 authored by Andrew Dunstan's avatar Andrew Dunstan

parent c08c8529
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.49 2005/10/25 15:15:16 tgl Exp $ */ /* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.50 2006/01/10 01:01:03 adunstan Exp $ */
/* undefine and redefine after #include */ /* undefine and redefine after #include */
#undef mkdir #undef mkdir
...@@ -165,15 +165,11 @@ int setitimer(int which, const struct itimerval * value, struct itimerval * ov ...@@ -165,15 +165,11 @@ int setitimer(int which, const struct itimerval * value, struct itimerval * ov
/* /*
* Supplement to <sys/types.h>. * Supplement to <sys/types.h>.
* *
* Perl already has conflicting defines for uid_t and gid_t. * Perl already has typedefs for uid_t and gid_t.
*/ */
#ifndef PLPERL_HAVE_UID_GID #ifndef PLPERL_HAVE_UID_GID
typedef int uid_t; typedef int uid_t;
typedef int gid_t; typedef int gid_t;
#else
/* These are redefined by perl. */
#define uid_t int
#define gid_t int
#endif #endif
typedef long key_t; typedef long key_t;
......
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