Changeset 021c508 in mainline for uspace/lib/posix/stdio.c


Ignore:
Timestamp:
2011-06-24T02:17:09Z (13 years ago)
Author:
Petr Koupy <petr.koupy@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d185132
Parents:
4d4988e (diff), 67c64b9f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge libposix changes.

File:
1 edited

Legend:

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

    r4d4988e r021c508  
    167167 * @return
    168168 */
     169int posix_vsprintf(char *s, const char *format, va_list ap)
     170{
     171        // TODO: low priority, just a compile-time dependency of binutils
     172        not_implemented();
     173}
     174
     175/**
     176 *
     177 * @param s
     178 * @param format
     179 * @param ...
     180 * @return
     181 */
    169182int posix_sscanf(const char *s, const char *format, ...)
    170183{
     
    173186}
    174187
     188/**
     189 *
     190 * @param path
     191 * @return
     192 */
     193int posix_remove(const char *path)
     194{
     195        // TODO: low priority, just a compile-time dependency of binutils
     196        not_implemented();
     197}
     198
     199/**
     200 *
     201 * @param s
     202 * @return
     203 */
     204char *posix_tmpnam(char *s)
     205{
     206        // TODO: low priority, just a compile-time dependency of binutils
     207        not_implemented();
     208}
     209
    175210/** @}
    176211 */
Note: See TracChangeset for help on using the changeset viewer.