Browse Source

__nonnull changes

tags/v0.9.3
Holger Lubitz 17 years ago
parent
commit
d39e79248c
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      src/hci/mucurses/mucurses.h

+ 5
- 5
src/hci/mucurses/mucurses.h View File

@@ -12,10 +12,10 @@
12 12
 
13 13
 extern SCREEN _ansi_screen;
14 14
 
15
-extern void _wputch ( WINDOW *win, chtype ch, int wrap );
16
-extern void _wputc ( WINDOW *win, char c, int wrap );
17
-extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n );
18
-extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n );
19
-extern void _wcursback ( WINDOW *win );
15
+extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
16
+extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
17
+extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
18
+extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
19
+extern void _wcursback ( WINDOW *win ) __nonnull;
20 20
 
21 21
 #endif /* _MUCURSES_H */

Loading…
Cancel
Save