add ncurses directory for Cygwin

This commit is contained in:
Renaud 2013-05-01 11:46:06 +08:00
parent a1124441f7
commit 4b53c4887b
1 changed files with 7 additions and 1 deletions

8
tcap.c
View File

@ -13,9 +13,15 @@
#define USE_BROKEN_OPTIMIZATION 0
#define termdef 1 /* Don't define "term" external. */
#ifdef CYGWIN
#include <ncurses/curses.h>
#include <stdio.h>
#include <ncurses/term.h>
#else
#include <curses.h>
#include <term.h>
#endif
#include <stdio.h>
#include "estruct.h"
#include "edef.h"