blob: 6a583bc34933b40f9cfd0397d9d3385d0efec0a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* $OpenBSD: curses.h,v 1.3 2003/06/17 21:33:53 millert Exp $ */
/*
* Placed in the public domain by Todd C. Miller <Todd.Miller@courtesan.com>
* on June 17, 2003.
*/
#ifndef _CURSES_H_
#define _CURSES_H_
#ifdef _USE_OLD_CURSES_
#include <ocurses.h>
#else
#include <ncurses.h>
#endif
#endif /* _CURSES_H_ */
|