switch source tree from k&r to c99

This commit is contained in:
nhmall
2021-01-26 21:06:16 -05:00
parent a2a9cb7b4f
commit f963c5aca7
232 changed files with 12099 additions and 17782 deletions
+3 -3
View File
@@ -34,7 +34,7 @@ mswin_nh_input_init(void)
/* check for input */
int
mswin_have_input()
mswin_have_input(void)
{
return
#ifdef SAFERHANGUP
@@ -63,7 +63,7 @@ mswin_input_push(PMSNHEvent event)
/* get event from the queue and delete it */
PMSNHEvent
mswin_input_pop()
mswin_input_pop(void)
{
PMSNHEvent retval;
@@ -92,7 +92,7 @@ mswin_input_pop()
/* get event from the queue but leave it there */
PMSNHEvent
mswin_input_peek()
mswin_input_peek(void)
{
PMSNHEvent retval;