summaryrefslogtreecommitdiffstats
path: root/snake/snake/snake.h
diff options
context:
space:
mode:
Diffstat (limited to 'snake/snake/snake.h')
-rw-r--r--snake/snake/snake.h17
1 files changed, 12 insertions, 5 deletions
diff --git a/snake/snake/snake.h b/snake/snake/snake.h
index 89148fbd..bdbd1362 100644
--- a/snake/snake/snake.h
+++ b/snake/snake/snake.h
@@ -1,6 +1,8 @@
+/* $NetBSD: snake.h,v 1.3 1995/04/22 08:34:38 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
@@ -30,8 +32,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * from: @(#)snake.h 5.5 (Berkeley) 6/1/90
- * $Id: snake.h,v 1.2 1993/08/01 18:51:16 mycroft Exp $
+ * @(#)snake.h 8.1 (Berkeley) 5/31/93
*/
# include <stdio.h>
@@ -75,6 +76,12 @@ struct sgttyb orig, new;
struct ltchars olttyc, nlttyc;
#endif
struct point *point();
+#if __STDC__
+void apr(struct point *, const char *, ...);
+void pr(const char *, ...);
+#else
+void apr();
+void pr();
+#endif
#define same(s1, s2) ((s1)->line == (s2)->line && (s1)->col == (s2)->col)
-