mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-05 10:09:30 +00:00
Fix compiler warnings: don't declare enum types as static.
This commit is contained in:
parent
890bf1b00d
commit
15519b2f58
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=7584
@ -1,6 +1,11 @@
|
|||||||
/* $RCSfile: curses.mus,v $$Revision: 4.0.1.2 $$Date: 92/06/08 16:06:12 $
|
/* $RCSfile: curses.mus,v $$Revision: 1.1 $$Date: 1995/03/24 04:33:49 $
|
||||||
*
|
*
|
||||||
* $Log: curses.mus,v $
|
* $Log: curses.mus,v $
|
||||||
|
# Revision 1.1 1995/03/24 04:33:49 jkh
|
||||||
|
# Bring back perl/usub as usub/, this time containing an updated curseperl
|
||||||
|
# which is also installed by default (the reason for which should also be
|
||||||
|
# plain shortly).
|
||||||
|
#
|
||||||
* Revision 4.0.1.2 92/06/08 16:06:12 lwall
|
* Revision 4.0.1.2 92/06/08 16:06:12 lwall
|
||||||
* patch20: function key support added to curses.mus
|
* patch20: function key support added to curses.mus
|
||||||
*
|
*
|
||||||
@ -43,7 +48,7 @@ static char *tcbuf = NULL;
|
|||||||
static unsigned curattr = NORMAL;
|
static unsigned curattr = NORMAL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static enum uservars {
|
enum uservars {
|
||||||
UV_curscr,
|
UV_curscr,
|
||||||
UV_stdscr,
|
UV_stdscr,
|
||||||
UV_LINES,
|
UV_LINES,
|
||||||
@ -59,7 +64,7 @@ static enum uservars {
|
|||||||
UV_A_NORMAL,
|
UV_A_NORMAL,
|
||||||
};
|
};
|
||||||
|
|
||||||
static enum usersubs {
|
enum usersubs {
|
||||||
US_addch,
|
US_addch,
|
||||||
US_waddch,
|
US_waddch,
|
||||||
US_addstr,
|
US_addstr,
|
||||||
|
Loading…
Reference in New Issue
Block a user