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
eb3a10b0
Commit
eb3a10b0
authored
16 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Hmm, baiji thinks we need explicit 'extern' here.
parent
1d26226d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/port/getopt.c
+10
-1
10 additions, 1 deletion
src/port/getopt.c
with
10 additions
and
1 deletion
src/port/getopt.c
+
10
−
1
View file @
eb3a10b0
/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.1
2
2009/04/04 2
1:55:50
tgl Exp $ */
/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.1
3
2009/04/04 2
2:36:11
tgl Exp $ */
/* This is used by psql under Win32 */
/* This is used by psql under Win32 */
...
@@ -50,10 +50,19 @@ int opterr = 1, /* if error message should be printed */
...
@@ -50,10 +50,19 @@ int opterr = 1, /* if error message should be printed */
optopt
;
/* character checked for validity */
optopt
;
/* character checked for validity */
char
*
optarg
;
/* argument associated with option */
char
*
optarg
;
/* argument associated with option */
#else
extern
int
opterr
;
extern
int
optind
;
extern
int
optopt
;
extern
char
*
optarg
;
#endif
#endif
#ifndef HAVE_INT_OPTRESET
#ifndef HAVE_INT_OPTRESET
int
optreset
;
/* reset getopt */
int
optreset
;
/* reset getopt */
#else
extern
int
optreset
;
#endif
#endif
#define BADCH (int)'?'
#define BADCH (int)'?'
...
...
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