Changeset e965dec in mainline


Ignore:
Timestamp:
2013-03-08T10:10:15Z (11 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ba4799a
Parents:
5759642f
Message:

Add missing returns

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/source/stdlib.c

    r5759642f re965dec  
    6363        // TODO: low priority, just a compile-time dependency of binutils
    6464        not_implemented();
     65        return 1;
    6566}
    6667
     
    232233        // TODO: low priority, just a compile-time dependency of binutils
    233234        not_implemented();
     235        return 0;
    234236}
    235237
     
    244246int posix_system(const char *string) {
    245247        // TODO: does nothing at the moment
     248        not_implemented();
    246249        return 0;
    247250}
Note: See TracChangeset for help on using the changeset viewer.