On 2016-03-31, Carsten Kunze <[email protected]> wrote: > curses, ncurses and ncursesw library seem to be hard links to one > file. So that means that with the -l option I decide which functions > I use and always simply include <curses.h>?
It is all the same library and it uses the same header header file. Just include <curses.h> and link with -lcurses. The other names are only for compatibility. For wide curses functionality, just call the wide curses functions, e.g. add_wch(3). -- Christian "naddy" Weisgerber [email protected]

