Changeset b08ef1fd in mainline for uspace/lib/posix/stdio.c


Ignore:
Timestamp:
2011-06-16T02:57:47Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
491e1ee
Parents:
4f4b4e7
Message:

POSIX types moved from stat.h to types.h.
Added function stubs into stdio.h and unistd.h.

File:
1 edited

Legend:

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

    r4f4b4e7 rb08ef1fd  
    111111}
    112112
     113/**
     114 *
     115 * @param stream
     116 * @param offset
     117 * @param whence
     118 * @return
     119 */
     120int posix_fseeko(FILE *stream, posix_off_t offset, int whence)
     121{
     122        // TODO
     123        not_implemented();
     124}
     125
     126/**
     127 *
     128 * @param stream
     129 * @return
     130 */
     131posix_off_t posix_ftello(FILE *stream)
     132{
     133        // TODO
     134        not_implemented();
     135}
     136
    113137/** @}
    114138 */
Note: See TracChangeset for help on using the changeset viewer.