]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - robots/main.c
clean up import
[bsdgames-darwin.git] / robots / main.c
index 3ae5763ce88e8f8eebc293a714bc3dc1bf7acc1d..47a113a266d76ecbf08fff854ec4276b677e8d72 100644 (file)
@@ -1,6 +1,8 @@
+/*     $NetBSD: main.c,v 1.5 1995/04/22 10:08:54 cgd Exp $     */
+
 /*
- * Copyright (c) 1980 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1980, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  */
 
 #ifndef lint
-char copyright[] =
-"@(#) Copyright (c) 1980 Regents of the University of California.\n\
- All rights reserved.\n";
+static char copyright[] =
+"@(#) Copyright (c) 1980, 1993\n\
      The Regents of the University of California.  All rights reserved.\n";
 #endif /* not lint */
 
 #ifndef lint
-/*static char sccsid[] = "from: @(#)main.c     5.5 (Berkeley) 2/28/91";*/
-static char rcsid[] = "$Id: main.c,v 1.3 1993/08/10 02:40:55 mycroft Exp $";
+#if 0
+static char sccsid[] = "@(#)main.c     8.1 (Berkeley) 5/31/93";
+#else
+static char rcsid[] = "$NetBSD: main.c,v 1.5 1995/04/22 10:08:54 cgd Exp $";
+#endif
 #endif /* not lint */
 
 # include      "robots.h"
@@ -148,6 +153,13 @@ char       **av;
        quit();
 }
 
+void
+__cputchar(ch)
+       int ch;
+{
+       (void)putchar(ch);
+}
+
 /*
  * quit:
  *     Leave the program elegantly.
@@ -155,9 +167,6 @@ char        **av;
 void
 quit()
 {
-       mvcur(0, COLS - 1, LINES - 1, 0);
-       insertln();
-       refresh();
        endwin();
        exit(0);
        /* NOTREACHED */