Ignore:
Timestamp:
2018-06-13T15:50:53Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
39f84ce4
Parents:
f47a905
git-author:
Jiri Svoboda <jiri@…> (2018-06-12 17:50:36)
git-committer:
Jiri Svoboda <jiri@…> (2018-06-13 15:50:53)
Message:

Replace libposix scanf with libc scanf.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/stdio.h

    rf47a905 r5a6c28d1  
    164164extern int vsprintf(char *__restrict__ s, const char *__restrict__ format, va_list ap);
    165165
    166 /* Formatted Input */
    167 extern int fscanf(
    168     FILE *__restrict__ stream, const char *__restrict__ format, ...);
    169 extern int vfscanf(
    170     FILE *__restrict__ stream, const char *__restrict__ format, va_list arg);
    171 extern int scanf(const char *__restrict__ format, ...);
    172 extern int vscanf(const char *__restrict__ format, va_list arg);
    173 extern int sscanf(
    174     const char *__restrict__ s, const char *__restrict__ format, ...);
    175 extern int vsscanf(
    176     const char *__restrict__ s, const char *__restrict__ format, va_list arg);
    177 
    178166/* File Locking */
    179167extern void flockfile(FILE *file);
Note: See TracChangeset for help on using the changeset viewer.