summaryrefslogtreecommitdiff
path: root/test/D/HSTeoh/LinkingProblem/prog.d
blob: a6b2c85803591f017c7abca639362ff585505634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Simple D program that links to ncurses via a C wrapping file.
 */

extern(C) {
	int ncurs_init();
	int ncurs_cleanup();
}

void main() {
	ncurs_init();
	ncurs_cleanup();
}