Changeset 1433ecda in mainline for uspace/lib/posix/include
- 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
- Location:
- uspace/lib/posix/include/posix
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/stdio.h
r47b2d7e3 r1433ecda 81 81 extern int puts(const char *); 82 82 83 extern int fprintf(FILE *, const char *, ...) _HELENOS_PRINTF_ATTRIBUTE(2, 3);83 extern int fprintf(FILE *, const char *, ...) _HELENOS_PRINTF_ATTRIBUTE(2, 3); 84 84 extern int vfprintf(FILE *, const char *, va_list); 85 85 … … 87 87 extern int vprintf(const char *, va_list); 88 88 89 extern int snprintf(char *, size_t 89 extern int snprintf(char *, size_t, const char *, ...) _HELENOS_PRINTF_ATTRIBUTE(3, 4); 90 90 #ifdef _GNU_SOURCE 91 91 extern int vasprintf(char **, const char *, va_list); -
uspace/lib/posix/include/posix/time.h
r47b2d7e3 r1433ecda 42 42 43 43 #ifndef CLOCKS_PER_SEC 44 44 #define CLOCKS_PER_SEC (1000000L) 45 45 #endif 46 46 47 47 #ifndef __locale_t_defined 48 49 48 #define __locale_t_defined 49 typedef struct __posix_locale *locale_t; 50 50 #endif 51 51 52 52 #ifndef POSIX_SIGNAL_H_ 53 53 struct sigevent; 54 54 #endif 55 55 -
uspace/lib/posix/include/posix/unistd.h
r47b2d7e3 r1433ecda 49 49 extern char *optarg; 50 50 extern int optind, opterr, optopt; 51 extern int getopt(int, char * 51 extern int getopt(int, char *const [], const char *); 52 52 53 53 /* Environment */
Note:
See TracChangeset
for help on using the changeset viewer.