use <termcap.h> instead of <curses.h> for termcap(3) functions
This commit is contained in:
parent
22630e700a
commit
2a7a558e44
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue