* lib/getopt.c: Nuke use of unneeded BSDisms.

This commit is contained in:
Christopher Faylor 2003-03-02 22:52:18 +00:00
parent 8b19b43d00
commit c2c6b1701a
2 changed files with 7 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2003-03-02 Christopher Faylor <cgf@redhat.com>
* lib/getopt.c: Nuke use of unneeded BSDisms.
2003-03-02 Christopher Faylor <cgf@redhat.com>
* dll_init.cc (dll_list::load_after_fork): Don't revert to LoadLibrary

View File

@ -36,13 +36,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
/*#include "namespace.h"*/
#include <assert.h>
#include <errno.h>
/*#include <err.h>*/
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
@ -92,9 +87,9 @@ extern char __declspec(dllimport) *__progname;
#define EMSG ""
static int getopt_internal __P((int, char * const *, const char *));
static int gcd __P((int, int));
static void permute_args __P((int, int, int, char * const *));
static int getopt_internal (int, char * const *, const char *);
static int gcd (int, int);
static void permute_args (int, int, int, char * const *);
static const char *place = EMSG; /* option letter processing */