From: Holger Lubitz Date: Sun, 19 Aug 2007 22:32:51 +0000 (+0200) Subject: __nonnull changes X-Git-Tag: v0.9.3~111 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a3ee34c1840d7737de087d7ffcffa805690bbb8;p=thirdparty%2Fipxe.git __nonnull changes --- diff --git a/src/hci/mucurses/ansi_screen.c b/src/hci/mucurses/ansi_screen.c index e77fcdc6f..0742a7d41 100644 --- a/src/hci/mucurses/ansi_screen.c +++ b/src/hci/mucurses/ansi_screen.c @@ -2,6 +2,11 @@ #include #include +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;