4.4BSD snapshot (revision 8.1); add 1993 to copyright
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 1 Jun 1993 07:43:11 +0000 (23:43 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 1 Jun 1993 07:43:11 +0000 (23:43 -0800)
SCCS-vsn: bin/csh/alloc.c 8.1
SCCS-vsn: bin/csh/char.c 8.1
SCCS-vsn: bin/csh/char.h 8.1
SCCS-vsn: bin/csh/const.c 8.1
SCCS-vsn: bin/csh/csh.c 8.1
SCCS-vsn: bin/csh/csh.h 8.1
SCCS-vsn: bin/csh/dir.c 8.1
SCCS-vsn: bin/csh/dir.h 8.1
SCCS-vsn: bin/csh/dol.c 8.1
SCCS-vsn: bin/csh/err.c 8.1
SCCS-vsn: bin/csh/exec.c 8.1
SCCS-vsn: bin/csh/exp.c 8.1
SCCS-vsn: bin/csh/extern.h 8.1
SCCS-vsn: bin/csh/file.c 8.1
SCCS-vsn: bin/csh/func.c 8.1
SCCS-vsn: bin/csh/glob.c 8.1
SCCS-vsn: bin/csh/hist.c 8.1
SCCS-vsn: bin/csh/init.c 8.1
SCCS-vsn: bin/csh/lex.c 8.1
SCCS-vsn: bin/csh/misc.c 8.1
SCCS-vsn: bin/csh/parse.c 8.1
SCCS-vsn: bin/csh/pathnames.h 8.1
SCCS-vsn: bin/csh/proc.c 8.1
SCCS-vsn: bin/csh/proc.h 8.1
SCCS-vsn: bin/csh/sem.c 8.1
SCCS-vsn: bin/csh/set.c 8.1
SCCS-vsn: bin/csh/str.c 8.1
SCCS-vsn: bin/csh/time.c 8.1
SCCS-vsn: bin/csh/csh.1 8.1

29 files changed:
usr/src/bin/csh/alloc.c
usr/src/bin/csh/char.c
usr/src/bin/csh/char.h
usr/src/bin/csh/const.c
usr/src/bin/csh/csh.1
usr/src/bin/csh/csh.c
usr/src/bin/csh/csh.h
usr/src/bin/csh/dir.c
usr/src/bin/csh/dir.h
usr/src/bin/csh/dol.c
usr/src/bin/csh/err.c
usr/src/bin/csh/exec.c
usr/src/bin/csh/exp.c
usr/src/bin/csh/extern.h
usr/src/bin/csh/file.c
usr/src/bin/csh/func.c
usr/src/bin/csh/glob.c
usr/src/bin/csh/hist.c
usr/src/bin/csh/init.c
usr/src/bin/csh/lex.c
usr/src/bin/csh/misc.c
usr/src/bin/csh/parse.c
usr/src/bin/csh/pathnames.h
usr/src/bin/csh/proc.c
usr/src/bin/csh/proc.h
usr/src/bin/csh/sem.c
usr/src/bin/csh/set.c
usr/src/bin/csh/str.c
usr/src/bin/csh/time.c

index 5df79f8..94b6d98 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1983, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1983, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)alloc.c    5.14 (Berkeley) %G%";
+static char sccsid[] = "@(#)alloc.c    8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index c1a5c3d..3470dfc 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)char.c     5.10 (Berkeley) %G%";
+static char sccsid[] = "@(#)char.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include "char.h"
 #endif /* not lint */
 
 #include "char.h"
index 62dd6d5..afc73c8 100644 (file)
@@ -1,10 +1,10 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)char.h      5.9 (Berkeley) %G%
+ *     @(#)char.h      8.1 (Berkeley) %G%
  */
 
 #include <ctype.h>
  */
 
 #include <ctype.h>
index 0cf30d1..880f16f 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)const.c    5.7 (Berkeley) %G%";
+static char sccsid[] = "@(#)const.c    8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 /*
 #endif /* not lint */
 
 /*
index a1c5902..99a6538 100644 (file)
@@ -1,9 +1,9 @@
-.\" Copyright (c) 1980, 1990 The Regents of the University of California.
-.\" All rights reserved.
+.\" Copyright (c) 1980, 1990, 1993
+.\"    The Regents of the University of California.  All rights reserved.
 .\"
 .\" %sccs.include.redist.man%
 .\"
 .\"
 .\" %sccs.include.redist.man%
 .\"
-.\"     @(#)csh.1      6.25 (Berkeley) %G%
+.\"     @(#)csh.1      8.1 (Berkeley) %G%
 .\"
 .Dd 
 .Dt CSH 1
 .\"
 .Dd 
 .Dt CSH 1
index 89aba0e..ade233c 100644 (file)
@@ -1,18 +1,18 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1991 The Regents of the University of California.\n\
- All rights reserved.\n";
+static char copyright[] =
+"@(#) Copyright (c) 1980, 1991, 1993\n\
      The Regents of the University of California.  All rights reserved.\n";
 #endif /* not lint */
 
 #ifndef lint
 #endif /* not lint */
 
 #ifndef lint
-static char sccsid[] = "@(#)csh.c      5.38 (Berkeley) %G%";
+static char sccsid[] = "@(#)csh.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 3d93537..12417de 100644 (file)
@@ -1,10 +1,10 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)csh.h       5.26 (Berkeley) %G%
+ *     @(#)csh.h       8.1 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
index bbcba6b..276a9dc 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)dir.c      5.20 (Berkeley) %G%";
+static char sccsid[] = "@(#)dir.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
index 8e8cd61..c57389c 100644 (file)
@@ -1,10 +1,10 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)dir.h       5.6 (Berkeley) %G%
+ *     @(#)dir.h       8.1 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
index 9c6a998..bc8002d 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)dol.c      5.21 (Berkeley) %G%";
+static char sccsid[] = "@(#)dol.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 5348cd2..4e58516 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)err.c      5.13 (Berkeley) %G%";
+static char sccsid[] = "@(#)err.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 42d0b71..61eb259 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)exec.c     5.22 (Berkeley) %G%";
+static char sccsid[] = "@(#)exec.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 60569ba..701f98a 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)exp.c      5.16 (Berkeley) %G%";
+static char sccsid[] = "@(#)exp.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 728eee6..48c09d1 100644 (file)
@@ -1,10 +1,10 @@
 /*-
 /*-
- * Copyright (c) 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)extern.h    5.15 (Berkeley) %G%
+ *     @(#)extern.h    8.1 (Berkeley) %G%
  */
 
 #include <sys/cdefs.h>
  */
 
 #include <sys/cdefs.h>
index 24196d5..94ccc0b 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)file.c     5.24 (Berkeley) %G%";
+static char sccsid[] = "@(#)file.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #ifdef FILEC
 #endif /* not lint */
 
 #ifdef FILEC
index 18b41f1..7755076 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)func.c     5.39 (Berkeley) %G%";
+static char sccsid[] = "@(#)func.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index fd87444..873cf22 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)glob.c     5.40 (Berkeley) %G%";
+static char sccsid[] = "@(#)glob.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
index 17029b3..5f54970 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)hist.c     5.11 (Berkeley) %G%";
+static char sccsid[] = "@(#)hist.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 91c24e1..8d690f7 100644 (file)
@@ -1,13 +1,13 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
 /*###9 [cc] warning: `sccsid' defined but not used%%%*/
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
 /*###9 [cc] warning: `sccsid' defined but not used%%%*/
-static char sccsid[] = "@(#)init.c     5.16 (Berkeley) %G%";
+static char sccsid[] = "@(#)init.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #if __STDC__
 #endif /* not lint */
 
 #if __STDC__
index 829ea6c..43bd49e 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)lex.c      5.29 (Berkeley) %G%";
+static char sccsid[] = "@(#)lex.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 3d01367..f5f92ec 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)misc.c     5.19 (Berkeley) %G%";
+static char sccsid[] = "@(#)misc.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
index 7d63190..9b47c8e 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)parse.c    5.13 (Berkeley) %G%";
+static char sccsid[] = "@(#)parse.c    8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 7ecb189..82db5ae 100644 (file)
@@ -1,10 +1,10 @@
 /*
 /*
- * Copyright (c) 1988 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1988, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)pathnames.h 5.8 (Berkeley) %G%
+ *     @(#)pathnames.h 8.1 (Berkeley) %G%
  */
 
 #define        _PATH_BIN               "/bin"
  */
 
 #define        _PATH_BIN               "/bin"
index 1819a82..aae2cb0 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)proc.c     5.29 (Berkeley) %G%";
+static char sccsid[] = "@(#)proc.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 76c040b..ca590de 100644 (file)
@@ -1,10 +1,10 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  *
  *
  * %sccs.include.redist.c%
  *
- *     @(#)proc.h      5.8 (Berkeley) %G%
+ *     @(#)proc.h      8.1 (Berkeley) %G%
  */
 
 /*
  */
 
 /*
index d6c8bf0..0a84489 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)sem.c      5.23 (Berkeley) %G%";
+static char sccsid[] = "@(#)sem.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/param.h>
 #endif /* not lint */
 
 #include <sys/param.h>
index 15bcefe..c1221ad 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)set.c      5.20 (Berkeley) %G%";
+static char sccsid[] = "@(#)set.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
index 0928e58..d1e5b91 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)str.c      5.13 (Berkeley) %G%";
+static char sccsid[] = "@(#)str.c      8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #define MALLOC_INCR    128
 #endif /* not lint */
 
 #define MALLOC_INCR    128
index 9837146..2d594ca 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1980, 1991 The Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1991, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)time.c     5.16 (Berkeley) %G%";
+static char sccsid[] = "@(#)time.c     8.1 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>