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


Ignore:
Timestamp:
2011-06-16T19:42:22Z (13 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/stdio.c

    r491e1ee r59f799b  
    4747 */
    4848#include "../c/generic/private/stdio.h"
     49
     50/**
     51 *
     52 * @param c
     53 * @param stream
     54 * @return
     55 */
     56int posix_ungetc(int c, FILE *stream)
     57{
     58        // TODO
     59        not_implemented();
     60}
    4961
    5062/**
     
    135147}
    136148
     149/**
     150 *
     151 * @param s
     152 * @param format
     153 * @param ...
     154 * @return
     155 */
     156int posix_sprintf(char *s, const char *format, ...)
     157{
     158        // TODO
     159        not_implemented();
     160}
     161
     162/**
     163 *
     164 * @param s
     165 * @param format
     166 * @param ...
     167 * @return
     168 */
     169int posix_sscanf(const char *s, const char *format, ...)
     170{
     171        // TODO
     172        not_implemented();
     173}
     174
    137175/** @}
    138176 */
Note: See TracChangeset for help on using the changeset viewer.