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

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

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