forgot returns
in macros
I think that might be the culprit for the segmentation fault in Nix (see christian/shellipt#44). Chances are good, because the when I fixed the problem, I bypassed those faulty macros.
This commit is contained in:
parent
c6218e9acc
commit
6fe1a7c5fb
|
@ -11,25 +11,25 @@
|
|||
#include <ncursesw/cursesw.h>
|
||||
|
||||
#ifdef addnwstr
|
||||
inline int UNDEF(addnwstr)(const wchar_t *wstr, int n) { addnwstr(wstr, n); }
|
||||
inline int UNDEF(addnwstr)(const wchar_t *wstr, int n) { return addnwstr(wstr, n); }
|
||||
#undef addnwstr
|
||||
#define addnwstr UNDEF(addnwstr)
|
||||
#endif
|
||||
|
||||
#ifdef add_wch
|
||||
inline int UNDEF(add_wch)(const cchar_t *character) { add_wch(character); }
|
||||
inline int UNDEF(add_wch)(const cchar_t *character) { return add_wch(character); }
|
||||
#undef add_wch
|
||||
#define add_wch UNDEF(add_wch)
|
||||
#endif
|
||||
|
||||
#ifdef ins_wch
|
||||
inline int UNDEF(ins_wch)(cchar_t *character) { ins_wch(character); }
|
||||
inline int UNDEF(ins_wch)(cchar_t *character) { return ins_wch(character); }
|
||||
#undef ins_wch
|
||||
#define ins_wch UNDEF(ins_wch)
|
||||
#endif
|
||||
|
||||
#ifdef get_wch
|
||||
inline int UNDEF(get_wch)(wint_t *character) { get_wch(character); }
|
||||
inline int UNDEF(get_wch)(wint_t *character) { return get_wch(character); }
|
||||
#undef get_wch
|
||||
#define get_wch UNDEF(get_wch)
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue