mirror of
https://git.freebsd.org/ports.git
synced 2025-06-19 11:40:31 -04:00
good FreeBSD-specific template; Will is working on one. PR: 15995 Submitted by: Will Andrews <andrews@technologist.com>
20 lines
372 B
Text
20 lines
372 B
Text
--- modules/countdown.c Wed Oct 29 13:42:28 1997
|
|
+++ modules/countdown.c.new Sun Jan 2 20:50:16 2000
|
|
@@ -4,8 +4,17 @@
|
|
|
|
*/
|
|
|
|
+#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>
|