Changeset 60288f5 in buchla-68k for ram/showcfg.c


Ignore:
Timestamp:
07/09/2017 12:23:40 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
6dd74a9
Parents:
0c834c5
Message:

Make function pointers more consistent.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/showcfg.c

    r0c834c5 r60288f5  
    3535extern  void    enterit(void);
    3636extern  void    idpoint(short x, short y, short pen);
    37 extern  short   nokey(void);
     37extern  void    nokey(void);
    3838
    3939extern  short   et_mcfn(short n);
     
    4848/* forward references */
    4949
    50 void    imfnbox(short n);
     50short   imfnbox(short n);
    5151
    5252/*
     
    612612*/
    613613
    614 void imfnbox(short n)
     614short imfnbox(short n)
    615615{
    616616        register short row, col;
     
    638638
    639639                                wcmenu(1);
    640                                 return;
     640                                return(SUCCESS);
    641641
    642642                        } else {                        /* data entry */
     
    648648                                        modinst();
    649649
    650                                 return;
     650                                return(SUCCESS);
    651651                        }
    652652/*
     
    668668                                        modinst();
    669669
    670                                 return;
     670                                return(SUCCESS);
    671671                        }
    672672                }
    673673        }
     674
     675        return(FAILURE);
    674676}
Note: See TracChangeset for help on using the changeset viewer.