diff options
author | Holger Lubitz | 2007-08-20 00:32:51 +0200 |
---|---|---|
committer | Holger Lubitz | 2007-08-20 00:32:51 +0200 |
commit | 6a3ee34c1840d7737de087d7ffcffa805690bbb8 (patch) | |
tree | d74f7fd9419a22fb3dd9239207e5afe41000d4fd /src/hci/mucurses | |
parent | __nonnull changes (diff) | |
download | ipxe-6a3ee34c1840d7737de087d7ffcffa805690bbb8.tar.gz ipxe-6a3ee34c1840d7737de087d7ffcffa805690bbb8.tar.xz ipxe-6a3ee34c1840d7737de087d7ffcffa805690bbb8.zip |
__nonnull changes
Diffstat (limited to 'src/hci/mucurses')
-rw-r--r-- | src/hci/mucurses/ansi_screen.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hci/mucurses/ansi_screen.c b/src/hci/mucurses/ansi_screen.c index e77fcdc6..0742a7d4 100644 --- a/src/hci/mucurses/ansi_screen.c +++ b/src/hci/mucurses/ansi_screen.c @@ -2,6 +2,11 @@ #include <curses.h> #include <console.h> +static void ansiscr_reset(struct _curses_screen *scr) __nonnull; +static void ansiscr_movetoyx(struct _curses_screen *scr, + unsigned int y, unsigned int x) __nonnull; +static void ansiscr_putc(struct _curses_screen *scr, chtype c) __nonnull; + unsigned short _COLS = 80; unsigned short _LINES = 24; |