blob: 73f404a552ea332e83dcb422bdb4dcfb4fd1b27c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--- modules/alarms.c Tue Apr 15 18:34:15 1997
+++ modules/alarms.c.new Sun Jan 2 20:50:02 2000
@@ -1,5 +1,14 @@
+#ifdef HAVE_CONFIG_H
+#include "../config.h"
+#endif
+
+#ifdef HAVE_NCURSES_NCURSES_H
+#include <ncurses/ncurses.h>
+#include <ncurses/term.h>
+#else
#include <curses.h>
#include <term.h>
+#endif
#include <stdlib.h>
#include <stdio.h>
|