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

[mini-libc] Add void type to function prototypes with no parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libs/mini-libc/unistd.c

    r473 r476  
    9797
    9898//////////
    99 int fork()
     99int fork( void )
    100100{
    101101    return hal_user_syscall( SYS_FORK, 0, 0, 0, 0 );
     
    103103
    104104////////////
    105 int getpid()
     105int getpid( void )
    106106{
    107107    return hal_user_syscall( SYS_GETPID, 0, 0, 0, 0 );
Note: See TracChangeset for help on using the changeset viewer.