mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-26 19:32:22 +01:00
14 lines
180 B
D
14 lines
180 B
D
/*
|
|
* 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();
|
|
}
|