Changeset 1433ecda in mainline for uspace/lib/c/include/stdio.h


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

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

    r47b2d7e3 r1433ecda  
    4444
    4545#ifndef SEEK_SET
    46         #define SEEK_SET  0
     46#define SEEK_SET  0
    4747#endif
    4848
    4949#ifndef SEEK_CUR
    50         #define SEEK_CUR  1
     50#define SEEK_CUR  1
    5151#endif
    5252
    5353#ifndef SEEK_END
    54         #define SEEK_END  2
     54#define SEEK_END  2
    5555#endif
    5656
     
    8282
    8383/* Formatted string output functions */
    84 extern int fprintf(FILE *, const char*, ...)
     84extern int fprintf(FILE *, const char *, ...)
    8585    _HELENOS_PRINTF_ATTRIBUTE(2, 3);
    8686extern int vfprintf(FILE *, const char *, va_list);
     
    9090extern int vprintf(const char *, va_list);
    9191
    92 extern int snprintf(char *, size_t , const char *, ...)
     92extern int snprintf(char *, size_t, const char *, ...)
    9393    _HELENOS_PRINTF_ATTRIBUTE(3, 4);
    9494extern int vasprintf(char **, const char *, va_list);
Note: See TracChangeset for help on using the changeset viewer.