Changeset 1433ecda in mainline for uspace/lib/c/include/stdio.h
- Timestamp:
- 2018-04-04T15:42:37Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4e1cc
- Parents:
- 47b2d7e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stdio.h
r47b2d7e3 r1433ecda 44 44 45 45 #ifndef SEEK_SET 46 46 #define SEEK_SET 0 47 47 #endif 48 48 49 49 #ifndef SEEK_CUR 50 50 #define SEEK_CUR 1 51 51 #endif 52 52 53 53 #ifndef SEEK_END 54 54 #define SEEK_END 2 55 55 #endif 56 56 … … 82 82 83 83 /* Formatted string output functions */ 84 extern int fprintf(FILE *, const char *, ...)84 extern int fprintf(FILE *, const char *, ...) 85 85 _HELENOS_PRINTF_ATTRIBUTE(2, 3); 86 86 extern int vfprintf(FILE *, const char *, va_list); … … 90 90 extern int vprintf(const char *, va_list); 91 91 92 extern int snprintf(char *, size_t 92 extern int snprintf(char *, size_t, const char *, ...) 93 93 _HELENOS_PRINTF_ATTRIBUTE(3, 4); 94 94 extern int vasprintf(char **, const char *, va_list);
Note:
See TracChangeset
for help on using the changeset viewer.