fix redundant declarations.

This commit is contained in:
christos 2001-02-04 22:04:11 +00:00
parent b42a153d41
commit 4056c9f72d
3 changed files with 10 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: extern.h,v 1.37 2000/12/18 02:32:51 lukem Exp $ */
/* $NetBSD: extern.h,v 1.38 2001/02/04 22:04:11 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@ -140,7 +140,9 @@ char *getline(char *, int, FILE *);
void init_curclass(void);
void logxfer(const char *, off_t, const char *, const char *,
const struct timeval *, const char *);
#if 0
void logwtmp(const char *, const char *, const char *);
#endif
struct tab *lookup(struct tab *, const char *);
void makedir(const char *);
void mlsd(const char *);
@ -269,7 +271,9 @@ struct ftpclass {
mode_t umask; /* Umask to use */
};
#ifndef YYEMPTY
extern int yyparse(void);
#endif
#ifndef GLOBAL
#define GLOBAL extern

View File

@ -1,4 +1,4 @@
/* $NetBSD: ftpd.c,v 1.120 2001/01/16 02:50:29 cgd Exp $ */
/* $NetBSD: ftpd.c,v 1.121 2001/02/04 22:04:12 christos Exp $ */
/*
* Copyright (c) 1997-2000 The NetBSD Foundation, Inc.
@ -109,7 +109,7 @@ __COPYRIGHT(
#if 0
static char sccsid[] = "@(#)ftpd.c 8.5 (Berkeley) 4/28/95";
#else
__RCSID("$NetBSD: ftpd.c,v 1.120 2001/01/16 02:50:29 cgd Exp $");
__RCSID("$NetBSD: ftpd.c,v 1.121 2001/02/04 22:04:12 christos Exp $");
#endif
#endif /* not lint */
@ -169,7 +169,6 @@ __RCSID("$NetBSD: ftpd.c,v 1.120 2001/01/16 02:50:29 cgd Exp $");
int data;
jmp_buf urgcatch;
struct passwd *pw;
int sflag;
int stru; /* avoid C keyword */
int mode;

View File

@ -1,4 +1,4 @@
/* $NetBSD: logwtmp.c,v 1.15 2000/05/20 02:20:19 lukem Exp $ */
/* $NetBSD: logwtmp.c,v 1.16 2001/02/04 22:04:12 christos Exp $ */
/*
* Copyright (c) 1988, 1993
@ -40,7 +40,7 @@
#if 0
static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: logwtmp.c,v 1.15 2000/05/20 02:20:19 lukem Exp $");
__RCSID("$NetBSD: logwtmp.c,v 1.16 2001/02/04 22:04:12 christos Exp $");
#endif
#endif /* not lint */
@ -57,6 +57,7 @@ __RCSID("$NetBSD: logwtmp.c,v 1.15 2000/05/20 02:20:19 lukem Exp $");
#include <time.h>
#include <unistd.h>
#include <utmp.h>
#include <util.h>
#ifdef KERBEROS5
#include <krb5/krb5.h>