Include appropriate header files to bring prototypes into scope.
Removed explicit errno declarations.
This commit is contained in:
parent
4a22fd1c39
commit
273e6cc624
4
usr.bin/env/env.c
vendored
4
usr.bin/env/env.c
vendored
@ -39,7 +39,7 @@ static char copyright[] =
|
|||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
/*static char sccsid[] = "@(#)env.c 8.3 (Berkeley) 4/2/94";*/
|
/*static char sccsid[] = "@(#)env.c 8.3 (Berkeley) 4/2/94";*/
|
||||||
static char rcsid[] = "$NetBSD: env.c,v 1.8 1995/09/28 07:34:39 perry Exp $";
|
static char rcsid[] = "$NetBSD: env.c,v 1.9 1996/05/07 18:32:22 jtc Exp $";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <err.h>
|
#include <err.h>
|
||||||
@ -58,7 +58,7 @@ main(argc, argv)
|
|||||||
char **argv;
|
char **argv;
|
||||||
{
|
{
|
||||||
extern char **environ;
|
extern char **environ;
|
||||||
extern int errno, optind;
|
extern int optind;
|
||||||
char **ep, *p;
|
char **ep, *p;
|
||||||
char *cleanenv[1];
|
char *cleanenv[1];
|
||||||
int ch;
|
int ch;
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
/*static char sccsid[] = "from: @(#)display.c 5.11 (Berkeley) 3/9/91";*/
|
/*static char sccsid[] = "from: @(#)display.c 5.11 (Berkeley) 3/9/91";*/
|
||||||
static char rcsid[] = "$Id: display.c,v 1.2 1993/08/01 18:14:49 mycroft Exp $";
|
static char rcsid[] = "$Id: display.c,v 1.3 1996/05/07 18:32:24 jtc Exp $";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -279,7 +279,7 @@ extern off_t skip; /* bytes to skip */
|
|||||||
next(argv)
|
next(argv)
|
||||||
char **argv;
|
char **argv;
|
||||||
{
|
{
|
||||||
extern int errno, exitval;
|
extern int exitval;
|
||||||
static int done;
|
static int done;
|
||||||
int statok;
|
int statok;
|
||||||
|
|
||||||
@ -316,7 +316,6 @@ doskip(fname, statok)
|
|||||||
char *fname;
|
char *fname;
|
||||||
int statok;
|
int statok;
|
||||||
{
|
{
|
||||||
extern int errno;
|
|
||||||
struct stat sbuf;
|
struct stat sbuf;
|
||||||
|
|
||||||
if (statok) {
|
if (statok) {
|
||||||
@ -354,8 +353,6 @@ emalloc(size)
|
|||||||
|
|
||||||
nomem()
|
nomem()
|
||||||
{
|
{
|
||||||
extern int errno;
|
|
||||||
|
|
||||||
(void)fprintf(stderr, "hexdump: %s.\n", strerror(errno));
|
(void)fprintf(stderr, "hexdump: %s.\n", strerror(errno));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -39,11 +39,12 @@ char copyright[] =
|
|||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
/*static char sccsid[] = "from: @(#)hexdump.c 5.5 (Berkeley) 6/1/90";*/
|
/*static char sccsid[] = "from: @(#)hexdump.c 5.5 (Berkeley) 6/1/90";*/
|
||||||
static char rcsid[] = "$Id: hexdump.c,v 1.2 1993/08/01 18:14:48 mycroft Exp $";
|
static char rcsid[] = "$Id: hexdump.c,v 1.3 1996/05/07 18:32:26 jtc Exp $";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <string.h>
|
||||||
#include "hexdump.h"
|
#include "hexdump.h"
|
||||||
|
|
||||||
FS *fshead; /* head of format strings */
|
FS *fshead; /* head of format strings */
|
||||||
@ -55,11 +56,10 @@ main(argc, argv)
|
|||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
{
|
{
|
||||||
extern int errno;
|
|
||||||
register FS *tfs;
|
register FS *tfs;
|
||||||
char *p, *rindex();
|
char *p;
|
||||||
|
|
||||||
if (!(p = rindex(argv[0], 'o')) || strcmp(p, "od"))
|
if (!(p = strrchr(argv[0], 'o')) || strcmp(p, "od"))
|
||||||
newsyntax(argc, &argv);
|
newsyntax(argc, &argv);
|
||||||
else
|
else
|
||||||
oldsyntax(argc, &argv);
|
oldsyntax(argc, &argv);
|
||||||
|
@ -43,7 +43,7 @@ char copyright[] =
|
|||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
/*static char sccsid[] = "from: @(#)indent.c 5.16 (Berkeley) 2/26/91";*/
|
/*static char sccsid[] = "from: @(#)indent.c 5.16 (Berkeley) 2/26/91";*/
|
||||||
static char rcsid[] = "$Id: indent.c,v 1.2 1993/08/01 18:14:33 mycroft Exp $";
|
static char rcsid[] = "$Id: indent.c,v 1.3 1996/05/07 18:32:28 jtc Exp $";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#include <sys/param.h>
|
#include <sys/param.h>
|
||||||
@ -55,6 +55,7 @@ static char rcsid[] = "$Id: indent.c,v 1.2 1993/08/01 18:14:33 mycroft Exp $";
|
|||||||
#include "indent_globs.h"
|
#include "indent_globs.h"
|
||||||
#include "indent_codes.h"
|
#include "indent_codes.h"
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <errno.h>
|
||||||
|
|
||||||
char *in_name = "Standard Input"; /* will always point to name of input
|
char *in_name = "Standard Input"; /* will always point to name of input
|
||||||
* file */
|
* file */
|
||||||
@ -1174,9 +1175,6 @@ bakcopy()
|
|||||||
err(msg)
|
err(msg)
|
||||||
char *msg;
|
char *msg;
|
||||||
{
|
{
|
||||||
extern int errno;
|
|
||||||
char *strerror();
|
|
||||||
|
|
||||||
(void)fprintf(stderr, "indent: %s: %s\n", msg, strerror(errno));
|
(void)fprintf(stderr, "indent: %s: %s\n", msg, strerror(errno));
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: lock.c,v 1.7 1995/06/27 00:16:17 jtc Exp $ */
|
/* $NetBSD: lock.c,v 1.8 1996/05/07 18:32:31 jtc Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1980, 1987, 1993
|
* Copyright (c) 1980, 1987, 1993
|
||||||
@ -46,7 +46,7 @@ static char copyright[] =
|
|||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)lock.c 8.1 (Berkeley) 6/6/93";
|
static char sccsid[] = "@(#)lock.c 8.1 (Berkeley) 6/6/93";
|
||||||
#endif
|
#endif
|
||||||
static char rcsid[] = "$NetBSD: lock.c,v 1.7 1995/06/27 00:16:17 jtc Exp $";
|
static char rcsid[] = "$NetBSD: lock.c,v 1.8 1996/05/07 18:32:31 jtc Exp $";
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -66,8 +66,10 @@ static char rcsid[] = "$NetBSD: lock.c,v 1.7 1995/06/27 00:16:17 jtc Exp $";
|
|||||||
#include <err.h>
|
#include <err.h>
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#define TIMEOUT 15
|
#define TIMEOUT 15
|
||||||
|
|
||||||
@ -84,7 +86,6 @@ main(argc, argv)
|
|||||||
char **argv;
|
char **argv;
|
||||||
{
|
{
|
||||||
extern char *optarg;
|
extern char *optarg;
|
||||||
extern int errno, optind;
|
|
||||||
struct passwd *pw;
|
struct passwd *pw;
|
||||||
struct timeval timval;
|
struct timeval timval;
|
||||||
struct itimerval ntimer, otimer;
|
struct itimerval ntimer, otimer;
|
||||||
@ -93,7 +94,7 @@ main(argc, argv)
|
|||||||
int ch, sectimeout, usemine;
|
int ch, sectimeout, usemine;
|
||||||
char *ap, *mypw, *ttynam, *tzn;
|
char *ap, *mypw, *ttynam, *tzn;
|
||||||
char hostname[MAXHOSTNAMELEN], s[BUFSIZ], s1[BUFSIZ];
|
char hostname[MAXHOSTNAMELEN], s[BUFSIZ], s1[BUFSIZ];
|
||||||
char *crypt(), *ttyname();
|
char *crypt();
|
||||||
|
|
||||||
sectimeout = TIMEOUT;
|
sectimeout = TIMEOUT;
|
||||||
mypw = NULL;
|
mypw = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user