diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-06 18:53:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-06 18:53:07 +0000 |
commit | 4f6f4abee953638d3409775c050227c9537c9e8c (patch) | |
tree | 38d3a984a5a051627704f25d9151930244be39c5 /lib/libocurses | |
parent | a835e97a88caf4a2d77874683640dd0e6c0225d1 (diff) |
Adapt things to use __type_t instead of _BSD_TYPE_T_
Add new sys/_types.h header
Include machine/_types.h or sys/_types.h where applicable
Diffstat (limited to 'lib/libocurses')
-rw-r--r-- | lib/libocurses/curses.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libocurses/curses.h b/lib/libocurses/curses.h index b486b1b6fd1..4146c35bb5d 100644 --- a/lib/libocurses/curses.h +++ b/lib/libocurses/curses.h @@ -267,8 +267,8 @@ int suspendwin(void); int touchline(WINDOW *, int, int, int); int touchoverlap(WINDOW *, WINDOW *); int touchwin(WINDOW *); -int vwprintw(WINDOW *, const char *, _BSD_VA_LIST_); -int vwscanw(WINDOW *, const char *, _BSD_VA_LIST_); +int vwprintw(WINDOW *, const char *, __va_list); +int vwscanw(WINDOW *, const char *, __va_list); int waddch(WINDOW *, int); int waddnstr(WINDOW *, const char *, int); int wclear(WINDOW *); @@ -287,7 +287,7 @@ int wrefresh(WINDOW *); int wscanw(WINDOW *, const char *, ...); int wstandend(WINDOW *); int wstandout(WINDOW *); -int vwprintw(WINDOW *, const char *, _BSD_VA_LIST_); +int vwprintw(WINDOW *, const char *, __va_list); /* Private functions that are needed for user programs prototypes. */ void __cputchar(int); |