summaryrefslogtreecommitdiffstats
path: root/src/hci/mucurses
diff options
context:
space:
mode:
authorHolger Lubitz2007-08-20 00:33:55 +0200
committerHolger Lubitz2007-08-20 00:33:55 +0200
commitd39e79248c2da5ce14826be1b00613919ab46e8b (patch)
treeb87c74ef509c49d6877c99aa6076dc1a410f0fe8 /src/hci/mucurses
parent__nonnull changes (diff)
downloadipxe-d39e79248c2da5ce14826be1b00613919ab46e8b.tar.gz
ipxe-d39e79248c2da5ce14826be1b00613919ab46e8b.tar.xz
ipxe-d39e79248c2da5ce14826be1b00613919ab46e8b.zip
__nonnull changes
Diffstat (limited to 'src/hci/mucurses')
-rw-r--r--src/hci/mucurses/mucurses.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/hci/mucurses/mucurses.h b/src/hci/mucurses/mucurses.h
index aca9b5c5..1476733f 100644
--- a/src/hci/mucurses/mucurses.h
+++ b/src/hci/mucurses/mucurses.h
@@ -12,10 +12,10 @@
extern SCREEN _ansi_screen;
-extern void _wputch ( WINDOW *win, chtype ch, int wrap );
-extern void _wputc ( WINDOW *win, char c, int wrap );
-extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n );
-extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n );
-extern void _wcursback ( WINDOW *win );
+extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
+extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
+extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
+extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
+extern void _wcursback ( WINDOW *win ) __nonnull;
#endif /* _MUCURSES_H */