[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

mh-6.8.4-JP-3.03/uip/vmh.c



パッチをあてた後の mh-6.8.4-JP-3.03/uip/vmh.c に

#if !defined(__NCURSES_H) && (defined(BSD44) || defined(linux))
#define	USE_OLD_TTY
#define	_maxx	maxx		/* curses.h */
#define	_maxy	maxy
#define	_curx	curx		/* curses.h */
#define	_cury	cury
void     __cputchar __P((int)); */
#undef	_putchar
#ifdef	BSD44
#define	_putchar	__cputchar
#else
#define	_putchar	(int (*)()) __cputchar
#endif
#include <sys/ioctl.h>		/* sgttyb */
#endif /* !__NCURSES_H && (BSD44 || linux) */

という部分がありますが、<curses.h> で

int	 __cputchar __P((int));

となっているので、適当に処理してやった方が良いと思う。

-- あやむら