Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 68166
Collapse All | Expand All

(-)genius.c (-12 / +12 lines)
Lines 35-52 Link Here
35
#include <stdio.h>
35
#include <stdio.h>
36
#include <locale.h>
36
#include <locale.h>
37
37
38
#ifdef USE_NCURSES
39
#ifdef INC_NCURSES
40
#include <ncurses/curses.h>
41
#include <ncurses/term.h>
42
#else
43
#include <curses.h>
44
#include <term.h>
45
#endif
46
#else
47
#include <termcap.h>
48
#endif
49
50
#include "calc.h"
38
#include "calc.h"
51
#include "eval.h"
39
#include "eval.h"
52
#include "util.h"
40
#include "util.h"
Lines 61-66 Link Here
61
49
62
#include <readline/readline.h>
50
#include <readline/readline.h>
63
#include <readline/history.h>
51
#include <readline/history.h>
52
53
#ifdef USE_NCURSES
54
#ifdef INC_NCURSES
55
#include <ncurses/curses.h>
56
#include <ncurses/term.h>
57
#else
58
#include <curses.h>
59
#include <term.h>
60
#endif
61
#else
62
#include <termcap.h>
63
#endif
64
64
65
/*Globals:*/
65
/*Globals:*/
66
66

Return to bug 68166