Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
eb3a10b0
Commit
eb3a10b0
authored
Apr 04, 2009
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hmm, baiji thinks we need explicit 'extern' here.
parent
1d26226d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
src/port/getopt.c
src/port/getopt.c
+10
-1
No files found.
src/port/getopt.c
View file @
eb3a10b0
/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.1
2 2009/04/04 21:55:50
tgl Exp $ */
/* $PostgreSQL: pgsql/src/port/getopt.c,v 1.1
3 2009/04/04 22:36:11
tgl Exp $ */
/* This is used by psql under Win32 */
...
...
@@ -50,10 +50,19 @@ int opterr = 1, /* if error message should be printed */
optopt
;
/* character checked for validity */
char
*
optarg
;
/* argument associated with option */
#else
extern
int
opterr
;
extern
int
optind
;
extern
int
optopt
;
extern
char
*
optarg
;
#endif
#ifndef HAVE_INT_OPTRESET
int
optreset
;
/* reset getopt */
#else
extern
int
optreset
;
#endif
#define BADCH (int)'?'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment