Use int tputs_arg_t on netbsd

This commit is contained in:
Fabian Homborg 2018-12-11 16:48:30 +01:00
parent a3085a3059
commit ee5e4cf8e2

View File

@ -46,7 +46,7 @@ int fish_mkstemp_cloexec(char *);
/// Under curses, tputs expects an int (*func)(char) as its last parameter, but in ncurses, tputs
/// expects a int (*func)(int) as its last parameter. tputs_arg_t is defined to always be what tputs
/// expects. Hopefully.
#ifdef NCURSES_VERSION
#if defined(NCURSES_VERSION) || defined(__NetBSD__)
typedef int tputs_arg_t;
#else
typedef char tputs_arg_t;