add Berkeley specific header
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Thu, 10 Mar 1988 03:29:55 +0000 (19:29 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Thu, 10 Mar 1988 03:29:55 +0000 (19:29 -0800)
SCCS-vsn: games/snake/snake/Makefile 5.5
SCCS-vsn: games/snake/snake/move.c 5.4
SCCS-vsn: games/snake/snake/snake.c 5.4
SCCS-vsn: games/snake/snake/snake.h 5.2
SCCS-vsn: games/snake/snscore/snscore.c 5.2

usr/src/games/snake/snake/Makefile
usr/src/games/snake/snake/move.c
usr/src/games/snake/snake/snake.c
usr/src/games/snake/snake/snake.h
usr/src/games/snake/snscore/snscore.c

index a6213e4..0f36a9f 100644 (file)
@@ -1,9 +1,15 @@
 #
 # 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.4     (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.5 (Berkeley) %G%
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
 #
 CFLAGS=        -O
 LIBC=  /lib/libc.a
@@ -49,13 +55,12 @@ FRC:
 snake.o: snake.c snake.h /usr/include/stdio.h /usr/include/assert.h
 snake.o: /usr/include/sys/types.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
 snake.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
 snake.o: snake.c snake.h /usr/include/stdio.h /usr/include/assert.h
 snake.o: /usr/include/sys/types.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
 snake.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
-snake.o: /usr/include/signal.h /usr/include/math.h /usr/include/pwd.h
+snake.o: /usr/include/signal.h /usr/include/machine/trap.h /usr/include/math.h
+snake.o: /usr/include/pwd.h
 move.o: move.c snake.h /usr/include/stdio.h /usr/include/assert.h
 move.o: /usr/include/sys/types.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
 move.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
 move.o: move.c snake.h /usr/include/stdio.h /usr/include/assert.h
 move.o: /usr/include/sys/types.h /usr/include/sgtty.h /usr/include/sys/ioctl.h
 move.o: /usr/include/sys/ttychars.h /usr/include/sys/ttydev.h
-move.o: /usr/include/signal.h /usr/include/math.h
+move.o: /usr/include/signal.h /usr/include/machine/trap.h /usr/include/math.h
 snscore.o: snscore.c /usr/include/stdio.h /usr/include/pwd.h
 snscore.o: snscore.c /usr/include/stdio.h /usr/include/pwd.h
-busy.o: busy.c /usr/include/stdio.h /usr/include/sys/types.h
-busy.o: /usr/include/a.out.h /usr/include/sys/exec.h
 
 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
 
 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
index eea3bbb..d0ee360 100644 (file)
@@ -1,12 +1,18 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 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[] = "@(#)move.c     5.3 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)move.c     5.4 (Berkeley) %G%";
+#endif /* not lint */
 
 /*************************************************************************
  *
 
 /*************************************************************************
  *
index 21d2142..b7a01dd 100644 (file)
@@ -1,18 +1,24 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 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) 1980 Regents of the University of California.\n\
  All rights reserved.\n";
  */
 
 #ifndef lint
 char copyright[] =
 "@(#) Copyright (c) 1980 Regents of the University of California.\n\
  All rights reserved.\n";
-#endif not lint
+#endif /* not lint */
 
 #ifndef lint
 
 #ifndef lint
-static char sccsid[] = "@(#)snake.c    5.3 (Berkeley) %G%";
-#endif not lint
+static char sccsid[] = "@(#)snake.c    5.4 (Berkeley) %G%";
+#endif /* not lint */
 
 /*
  * snake - crt hack game.
 
 /*
  * snake - crt hack game.
index ce4eca8..afb49fb 100644 (file)
@@ -1,9 +1,15 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.  The Berkeley software License Agreement
- * specifies the terms and conditions for redistribution.
+ * All rights reserved.
  *
  *
- *     @(#)snake.h     5.1 (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.
+ *
+ *     @(#)snake.h     5.2 (Berkeley) %G%
  */
 
 # include <stdio.h>
  */
 
 # include <stdio.h>
index a675d89..47ff7c8 100644 (file)
@@ -1,12 +1,24 @@
 /*
  * Copyright (c) 1980 Regents of the University of California.
 /*
  * Copyright (c) 1980 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[] = "@(#)snscore.c  5.1 (Berkeley) %G%";
-#endif not lint
+char copyright[] =
+"@(#) Copyright (c) 1980 Regents of the University of California.\n\
+ All rights reserved.\n";
+#endif /* not lint */
+
+#ifndef lint
+static char sccsid[] = "@(#)snscore.c  5.2 (Berkeley) %G%";
+#endif /* not lint */
 
 #include <stdio.h>
 #include <pwd.h>
 
 #include <stdio.h>
 #include <pwd.h>