diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-10-15 16:58:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-10-15 16:58:18 +0000 |
commit | 1eddf69691499aa4efdb6b45902ea466eb706668 (patch) | |
tree | 728e10c9e0281958f72718e195ddebbb9c10e90a /usr.bin | |
parent | 98004a20a207ec5acedf0d045fd5d21a5e13eedc (diff) |
Get rid of the buf[] extern. Each .c file has it's own (local) buf.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rdist/defs.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/rdist/defs.h b/usr.bin/rdist/defs.h index dc71280a7a4..ad838bd1139 100644 --- a/usr.bin/rdist/defs.h +++ b/usr.bin/rdist/defs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: defs.h,v 1.6 1997/04/27 13:01:28 downsj Exp $ */ +/* $OpenBSD: defs.h,v 1.7 1997/10/15 16:58:17 millert Exp $ */ #ifndef __DEFS_H__ #define __DEFS_H__ /* @@ -35,7 +35,7 @@ */ /* - * $Id: defs.h,v 1.6 1997/04/27 13:01:28 downsj Exp $ + * $Id: defs.h,v 1.7 1997/10/15 16:58:17 millert Exp $ * @(#)defs.h 5.2 (Berkeley) 3/20/86 */ @@ -312,7 +312,6 @@ struct linkbuf { extern char *optarg; /* Option argument */ extern char *path_remsh; /* Remote shell command */ -extern char buf[]; /* General purpose buffer */ extern char host[]; /* Host name of master copy */ extern char *currenthost; /* Name of current host */ extern char *progname; /* Name of this program */ |