dtcalc: Change to ANSI function definitions
authorPeter Howkins <flibble@users.sf.net>
Thu, 28 Jun 2018 03:09:20 +0000 (04:09 +0100)
committerPeter Howkins <flibble@users.sf.net>
Thu, 28 Jun 2018 03:09:20 +0000 (04:09 +0100)
cde/programs/dtcalc/mp.c
cde/programs/dtcalc/text.c

index d107ff68311244b364eb2e8960c15dfbecc6e35a..8e7b9e29243db79c33c912a3659af3d04b50c95e 100644 (file)
@@ -1633,8 +1633,7 @@ L130:
 
 
 void
-mpdiv(x, y, z)
-int *x, *y, *z ;
+mpdiv(int *x, int *y, int *z)
 {
   static int i, i2, ie, iz3 ;
 
index 147ce8b3816dd8a525bf7af6c33ea1135258a204..bd64772048d0a0cf3fc0cf7bb0680170b74e8788 100644 (file)
@@ -65,7 +65,7 @@ char *vstrs[MAXVMESS] ;
 
 
 void
-init_cmdline_opts()      /* Initialize command line option strings. */
+init_cmdline_opts(void)      /* Initialize command line option strings. */
 {
   cmdstr[(int) CMD_ACC]      = "-a" ;
   cmdstr[(int) CMD_MODE]      = "-m" ;
@@ -78,7 +78,7 @@ init_cmdline_opts()      /* Initialize command line option strings. */
 
 
 void
-init_text()   /* Setup text strings depending upon language. */
+init_text(void)   /* Setup text strings depending upon language. */
 {
   int i ;
 
@@ -640,7 +640,7 @@ init_text()   /* Setup text strings depending upon language. */
 }
 
 void
-init_mess()   /* Setup text strings depending upon language. */
+init_mess(void)   /* Setup text strings depending upon language. */
 {
   int i ;