summaryrefslogtreecommitdiffstats
path: root/rain
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1997-10-13 16:13:39 +0000
committerlukem <lukem@NetBSD.org>1997-10-13 16:13:39 +0000
commitc1a3f2353b38d22d94cbc0101f3115b8e2eefc30 (patch)
tree15e22e826d2b0121dd2b637fcdc83d63faa35eaa /rain
parent6ce818072646bb39787b26f73eaf9f32f92ad032 (diff)
downloadbsdgames-darwin-c1a3f2353b38d22d94cbc0101f3115b8e2eefc30.tar.gz
bsdgames-darwin-c1a3f2353b38d22d94cbc0101f3115b8e2eefc30.tar.zst
bsdgames-darwin-c1a3f2353b38d22d94cbc0101f3115b8e2eefc30.zip
use <termcap.h> instead of <curses.h> for termcap(3) functions
Diffstat (limited to 'rain')
-rw-r--r--rain/rain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rain/rain.c b/rain/rain.c
index 02f7c32d..457ff889 100644
--- a/rain/rain.c
+++ b/rain/rain.c
@@ -1,4 +1,4 @@
-/* $NetBSD: rain.c,v 1.8 1997/10/12 01:12:52 lukem Exp $ */
+/* $NetBSD: rain.c,v 1.9 1997/10/13 16:13:39 lukem Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)rain.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: rain.c,v 1.8 1997/10/12 01:12:52 lukem Exp $");
+__RCSID("$NetBSD: rain.c,v 1.9 1997/10/13 16:13:39 lukem Exp $");
#endif
#endif /* not lint */
@@ -54,11 +54,11 @@ __RCSID("$NetBSD: rain.c,v 1.8 1997/10/12 01:12:52 lukem Exp $");
#include <sys/types.h>
#include <sys/ioctl.h>
-#include <curses.h>
#include <err.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
+#include <termcap.h>
#include <termios.h>
#define cursor(c, r) tputs(tgoto(CM, c, r), 1, fputchar)