Ignore:
Timestamp:
Aug 21, 2018, 9:50:01 PM (6 years ago)
Author:
viala@…
Message:

[boot] Add void type to function prototypes with no parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/boot/tsar_mips32/boot_utils.h

    r457 r474  
    210210 * boot code detects an error.
    211211 ****************************************************************************/
    212 void boot_exit() __attribute__((noreturn));
     212void boot_exit( void ) __attribute__((noreturn));
    213213
    214214/****************************************************************************
     
    217217 * @ returns the processor cycle count.
    218218 ****************************************************************************/
    219 uint32_t boot_get_proctime();
     219uint32_t boot_get_proctime( void );
    220220
    221221/****************************************************************************
     
    224224 * @ returns the processor gid
    225225 ****************************************************************************/
    226 uint32_t boot_get_procid();
     226uint32_t boot_get_procid( void );
    227227
    228228/****************************************************************************
Note: See TracChangeset for help on using the changeset viewer.