Changeset 59f799b in mainline for uspace/lib/posix/unistd.c


Ignore:
Timestamp:
2011-06-16T19:42:22Z (14 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
39a7bfa
Parents:
491e1ee
Message:

Added function stubs into stdio.h and unistd.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/unistd.c

    r491e1ee r59f799b  
    5151
    5252/**
     53 *
     54 * @return
     55 */
     56posix_uid_t posix_getuid(void)
     57{
     58        // TODO
     59        not_implemented();
     60}
     61
     62/**
     63 *
     64 * @return
     65 */
     66posix_gid_t posix_getgid(void)
     67{
     68        // TODO
     69        not_implemented();
     70}
     71
     72/**
    5373 *
    5474 * @param path
     
    6282}
    6383
     84/**
     85 *
     86 * @param name
     87 * @return
     88 */
     89long posix_sysconf(int name)
     90{
     91        // TODO
     92        not_implemented();
     93}
     94
    6495/** @}
    6596 */
Note: See TracChangeset for help on using the changeset viewer.