Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
5e2f5711
Commit
5e2f5711
authored
Jan 13, 2003
by
Josh Coalson
Browse files
fix some ansi violations in identifier names
parent
ccce9edb
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/share/getopt.h
View file @
5e2f5711
...
...
@@ -146,23 +146,23 @@ struct share__option
/* Many other libraries have conflicting prototypes for getopt, with
differences in the consts, in stdlib.h. To avoid compilation
errors, only prototype getopt for the GNU C library. */
extern
int
share__getopt
(
int
__
argc
,
char
*
const
*
__
argv
,
const
char
*
__
shortopts
);
extern
int
share__getopt
(
int
argc
,
char
*
const
*
argv
,
const
char
*
shortopts
);
/*[JEC] was:# else*/
/* not __GNU_LIBRARY__ */
/*[JEC] was:extern int getopt ();*/
/*[JEC] was:# endif*/
/* __GNU_LIBRARY__ */
/*[JEC] was:# ifndef __need_getopt*/
extern
int
share__getopt_long
(
int
__
argc
,
char
*
const
*
__
argv
,
const
char
*
__
shortopts
,
const
struct
share__option
*
__
longopts
,
int
*
__
longind
);
extern
int
share__getopt_long_only
(
int
__
argc
,
char
*
const
*
__
argv
,
const
char
*
__
shortopts
,
const
struct
share__option
*
__
longopts
,
int
*
__
longind
);
extern
int
share__getopt_long
(
int
argc
,
char
*
const
*
argv
,
const
char
*
shortopts
,
const
struct
share__option
*
longopts
,
int
*
longind
);
extern
int
share__getopt_long_only
(
int
argc
,
char
*
const
*
argv
,
const
char
*
shortopts
,
const
struct
share__option
*
longopts
,
int
*
longind
);
/* Internal only. Users should not call this directly. */
extern
int
share___getopt_internal
(
int
__
argc
,
char
*
const
*
__
argv
,
const
char
*
__
shortopts
,
const
struct
share__option
*
__
longopts
,
int
*
__
longind
,
int
__
long_only
);
extern
int
share___getopt_internal
(
int
argc
,
char
*
const
*
argv
,
const
char
*
shortopts
,
const
struct
share__option
*
longopts
,
int
*
longind
,
int
long_only
);
/*[JEC] was:# endif*/
/*[JEC] was:#else*/
/* not __STDC__ */
/*[JEC] was:extern int getopt ();*/
...
...
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