show/hide this revision's text 5 deleted 1 characters in body

It's simply a forward declaration, so that the function is known to the C compiler (and can be used (called from other functions)) before it's actually defined (in line 8247). The actual formatting of the definition (which includes newlines) makes it hard to grep for it's existence.

Don't get distracted by the __ARGS macro. It's only a compatibility macro for the different function declaration syntaxes of K&R C vs. ANSI C.

In ANSI C a function declaration must look like this:

int getopt(int, char * const *, const char *);

In the (older) Kernighan and Ritchie C http://en.wikipedia.org/wiki/C_%28programming_language%29#K.26R_C

int getopt();

show/hide this revision's text 4 edited body

It's simply a forward declaration, so that the function is known to the C compiler (and can be used (called from other functions)) before it's actually defined (in line 8247).

Don't get distracted by the __ARGS macro. It's only a compatibility macro for the different function declaration syntaxes of K&R C vs. ANSI C.

In Ansi ANSI C a function declaration must look like this:

int getopt(int, char * const *, const char *);

In the (older) Kernighan and Ritchie C http://en.wikipedia.org/wiki/C_%28programming_language%29#K.26R_C

int getopt();

show/hide this revision's text 3 deleted 9 characters in body

It's simply a forward declaration, so that the function is known to the C compiler (and can be used (called from other functions)) before it's actually defined (in line 8247).

Don't get distracted by the __ARGS macro. It's only a compatibility macro.

In Ansi C a function declaration must look like this:

int getopt(int, char * const *, const char *);

In the (older) Kernighan and Ritchie C http://en.wikipedia.org/wiki/C_%28programming_language%29#K.26R_C

int getopt();

show/hide this revision's text 2 added 76 characters in body
show/hide this revision's text 1