]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - tetris/screen.h
Fix merge conflicts
[bsdgames-darwin.git] / tetris / screen.h
index 319e356dbc391e181a6ba8d2fb2c546c934e90fa..c0b39053158db7f01137d6fb5f9bc1ae7214a069 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: screen.h,v 1.3 1997/10/14 01:14:34 lukem Exp $ */
+/*     $NetBSD: screen.h,v 1.9 2009/08/12 08:51:21 dholland Exp $      */
 
 /*-
  * Copyright (c) 1992, 1993
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
 /*
  * Capabilities from TERMCAP (used in the score code).
  */
-char *SEstr;                   /* end standout mode */
-char *SOstr;                   /* begin standout mode */
+extern char *SEstr;            /* end standout mode */
+extern char *SOstr;            /* begin standout mode */
 
 /*
  * putpad() is for padded strings with count=1.
  */
 #define        putpad(s)       tputs(s, 1, put)
 
-void   put __P((int));         /* just calls putchar; for tputs */
-void   scr_clear __P((void));
-void   scr_end __P((void));
-void   scr_init __P((void));
-void   scr_msg __P((char *, int));
-void   scr_set __P((void));
-void   scr_update __P((void));
+int    put(int);               /* just calls putchar; for tputs */
+void   scr_clear(void);
+void   scr_end(void);
+void   scr_init(void);
+void   scr_msg(char *, int);
+void   scr_set(void);
+void   scr_update(void);