Use (void) for a function taking no arguments - fix gcc -Wstrict-prototypes

This commit is contained in:
Frank Denis 2011-11-10 13:46:19 -08:00 committed by Ben Noordhuis
parent 224584c53e
commit 9322dd1724

View File

@ -730,7 +730,7 @@ UV_EXTERN int uv_tty_set_mode(uv_tty_t*, int mode);
* To be called when the program exits. Resets TTY settings to default
* values for the next process to take over.
*/
UV_EXTERN void uv_tty_reset_mode();
UV_EXTERN void uv_tty_reset_mode(void);
/*
* Gets the current Window size. On success zero is returned.