@@ -370,8 +370,7 @@ mytextbackground(int iBkgColor)
370370 */
371371
372372 static long
373- mygetdigits (pp )
374- char_u * * pp ;
373+ mygetdigits (char_u * * pp )
375374{
376375 char_u * p ;
377376 long retval = 0 ;
@@ -473,7 +472,7 @@ translate_altkeys(int rawkey)
473472 * Set normal fg/bg color, based on T_ME. Called when t_me has been set.
474473 */
475474 void
476- mch_set_normal_colors ()
475+ mch_set_normal_colors (void )
477476{
478477 char_u * p ;
479478 int n ;
@@ -1232,8 +1231,16 @@ cbrk_handler(void)
12321231 * For DOS 3 and later return 3 (Fail)
12331232 */
12341233 static void interrupt
1235- catch_cint (bp , di , si , ds , es , dx , cx , bx , ax )
1236- unsigned bp , di , si , ds , es , dx , cx , bx , ax ;
1234+ catch_cint (
1235+ unsigned bp ,
1236+ unsigned di ,
1237+ unsigned si ,
1238+ unsigned ds ,
1239+ unsigned es ,
1240+ unsigned dx ,
1241+ unsigned cx ,
1242+ unsigned bx ,
1243+ unsigned ax )
12371244{
12381245 ax = (ax & 0xff00 ); /* set AL to 0 */
12391246 if (_osmajor >= 3 )
@@ -1876,7 +1883,7 @@ mch_set_shellsize(void)
18761883 * Rows and/or Columns has changed.
18771884 */
18781885 void
1879- mch_new_shellsize ()
1886+ mch_new_shellsize (void )
18801887{
18811888#ifdef FEAT_MOUSE
18821889 /* best guess for mouse coordinate computations */
@@ -1897,7 +1904,7 @@ mch_new_shellsize()
18971904 * DOS console when 'columns' is set to a too large value.
18981905 */
18991906 void
1900- mch_check_columns ()
1907+ mch_check_columns (void )
19011908{
19021909 static union REGS regs ;
19031910
@@ -2946,10 +2953,10 @@ mch_isdir(char_u *name)
29462953 * Return -1 if unknown.
29472954 */
29482955 int
2949- mch_can_exe (name , path , use_path )
2950- char_u * name ;
2951- char_u * * path ;
2952- int use_path ;
2956+ mch_can_exe (
2957+ char_u * name ,
2958+ char_u * * path ,
2959+ int use_path )
29532960{
29542961 char * p ;
29552962 int mode ;
0 commit comments