add new Berkeley headers
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 2 Feb 1988 03:34:52 +0000 (19:34 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 2 Feb 1988 03:34:52 +0000 (19:34 -0800)
SCCS-vsn: usr.bin/rdist/Makefile 5.4
SCCS-vsn: usr.bin/rdist/defs.h 5.3
SCCS-vsn: usr.bin/rdist/docmd.c 5.2
SCCS-vsn: usr.bin/rdist/expand.c 5.3
SCCS-vsn: usr.bin/rdist/gram.y 5.3
SCCS-vsn: usr.bin/rdist/lookup.c 5.3
SCCS-vsn: usr.bin/rdist/main.c 5.2
SCCS-vsn: usr.bin/rdist/server.c 5.6

usr/src/usr.bin/rdist/Makefile
usr/src/usr.bin/rdist/defs.h
usr/src/usr.bin/rdist/docmd.c
usr/src/usr.bin/rdist/expand.c
usr/src/usr.bin/rdist/gram.y
usr/src/usr.bin/rdist/lookup.c
usr/src/usr.bin/rdist/main.c
usr/src/usr.bin/rdist/server.c

index 85880e2..274a08b 100644 (file)
@@ -1,19 +1,25 @@
 #
 # Copyright (c) 1987 Regents of the University of California.
 #
 # Copyright (c) 1987 Regents of the University of California.
-# All rights reserved.  The Berkeley software License Agreement
-# specifies the terms and conditions for redistribution.
+# All rights reserved.
 #
 #
-#      @(#)Makefile    5.3     (Berkeley)      %G%
+# Redistribution and use in source and binary forms are permitted
+# provided that this notice is preserved and that due credit is given
+# to the University of California at Berkeley. The name of the University
+# may not be used to endorse or promote products derived from this
+# software without specific prior written permission. This software
+# is provided ``as is'' without express or implied warranty.
+#
+#      @(#)Makefile    5.4 (Berkeley) %G%
 #
 LIBC=  /lib/libc.a
 #
 LIBC=  /lib/libc.a
-RDIST = /usr/ucb/rdist
-CFLAGS= -O -DRDIST=\"${RDIST}\"
-SRCS = docmd.c expand.c gram.y lookup.c main.c server.c
-OBJS = docmd.o expand.o gram.o lookup.o main.o server.o
+RDIST= /usr/ucb/rdist
+CFLAGS=        -O -DRDIST=\"${RDIST}\"
+SRCS docmd.c expand.c gram.y lookup.c main.c server.c
+OBJS docmd.o expand.o gram.o lookup.o main.o server.o
 
 all: rdist
 
 
 all: rdist
 
-rdist: ${OBJS} ${LIBC}
+rdist: ${OBJS} ${LIBC}
        ${CC} -o $@ ${CFLAGS} ${OBJS}
 
 clean: FRC
        ${CC} -o $@ ${CFLAGS} ${OBJS}
 
 clean: FRC
index 0bfc249..d85f1ae 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)defs.h      5.2 (Berkeley) %G%
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
+ *
+ *     @(#)defs.h      5.3 (Berkeley) %G%
  */
 
 #include <stdio.h>
  */
 
 #include <stdio.h>
index 478d07c..7865c59 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)docmd.c    5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)docmd.c    5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "defs.h"
 #include <setjmp.h>
 
 #include "defs.h"
 #include <setjmp.h>
index e5617cd..593f1b4 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)expand.c   5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)expand.c   5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "defs.h"
 
 
 #include "defs.h"
 
index 032fa82..f10f5b9 100644 (file)
@@ -1,13 +1,19 @@
 %{
 /*
 %{
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char *sccsid = "@(#)gram.y      5.2 (Berkeley) 85/06/21";
-#endif
+static char sccsid[] = "@(#)gram.y     5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "defs.h"
 
 
 #include "defs.h"
 
index ebd135a..23ba6db 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)lookup.c   5.2 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)lookup.c   5.3 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "defs.h"
 
 
 #include "defs.h"
 
index 261f5d8..8014379 100644 (file)
@@ -1,18 +1,24 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1983 Regents of the University of California.\n\
  All rights reserved.\n";
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1983 Regents of the University of California.\n\
  All rights reserved.\n";
-#endif not lint
+#endif /* not lint */
 
 #ifndef lint
 
 #ifndef lint
-static char sccsid[] = "@(#)main.c     5.1 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)main.c     5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "defs.h"
 
 
 #include "defs.h"
 
index 7e25093..6f44383 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1983 Regents of the University of California.
 /*
  * Copyright (c) 1983 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms are permitted
+ * provided that this notice is preserved and that due credit is given
+ * to the University of California at Berkeley. The name of the University
+ * may not be used to endorse or promote products derived from this
+ * software without specific prior written permission. This software
+ * is provided ``as is'' without express or implied warranty.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)server.c   5.5 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)server.c   5.6 (Berkeley) %G%";
+#endif /* not lint */
 
 #include "defs.h"
 
 
 #include "defs.h"