Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
ad24b8e6
Commit
ad24b8e6
authored
19 years ago
by
Andrew Dunstan
Browse files
Options
Downloads
Patches
Plain Diff
remove unneeded defines for uid_t and gid_t, which conflict with perl's typedefs.
parent
c08c8529
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/port/win32.h
+2
-6
2 additions, 6 deletions
src/include/port/win32.h
with
2 additions
and
6 deletions
src/include/port/win32.h
+
2
−
6
View file @
ad24b8e6
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.
49
200
5/10/25 15:15:16 tgl
Exp $ */
/* $PostgreSQL: pgsql/src/include/port/win32.h,v 1.
50
200
6/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 define
s for uid_t and gid_t.
* Perl already has
typedef
s 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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment