mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
dtcalc: Change to ANSI function definitions
This commit is contained in:
parent
bb7ac1f24e
commit
7936fae07b
2 changed files with 4 additions and 5 deletions
|
@ -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 ;
|
||||
|
||||
|
|
|
@ -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 ;
|
||||
|
||||
|
|
Loading…
Reference in a new issue