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