From 78294a91416ff491bcd7b2801ebcdc36553c75d3 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Fri, 21 Aug 2015 21:22:16 +0100 Subject: [PATCH] curses: fix prototypes up a bit We really need to add "chtype" and move to the proper modern definitions --- Library/include/curses.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/include/curses.h b/Library/include/curses.h index dbcb16e1..b2f83552 100644 --- a/Library/include/curses.h +++ b/Library/include/curses.h @@ -177,7 +177,7 @@ _PROTOTYPE( void nodelay, (WINDOW *_win, bool _flag) ); _PROTOTYPE( void noecho, (void)); _PROTOTYPE( void nonl, (void)); _PROTOTYPE( void noraw, (void)); -_PROTOTYPE( void outc, (int _c) ); +_PROTOTYPE( int outc, (int _c) ); _PROTOTYPE( void overlay, (WINDOW *_win1, WINDOW *_win2) ); _PROTOTYPE( void overwrite, (WINDOW *_win1, WINDOW *_win2) ); _PROTOTYPE( void poscur, (int _r, int _c) ); -- 2.34.1