if you find yourself in a situation where ncurses++ complains about headers (fixincludes should fix this, but still sharing)
in curses.h:
Change this section to this:
This will fix C++ header issues. stdint.h on IRIX is only for c99
in curses.h:
Code:
#if 1
#include <stdint.h>
#endif
#ifdef __cplusplus
#else
#if 0
#include <stdnoreturn.h>
#undef GCC_NORETURN
Change this section to this:
Code:
#if 1 && defined(__c99)
#include <stdint.h>
#endif
#ifdef __cplusplus
#include <inttypes.h>
#else
#if 0
#include <stdnoreturn.h>
#undef GCC_NORETURN
This will fix C++ header issues. stdint.h on IRIX is only for c99