Changeset 82fd245 in mainline
- Timestamp:
- 2018-07-05T21:41:19Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9f77d98
- Parents:
- e679283
- git-author:
- Dzejrou <dzejrou@…> (2018-01-07 00:18:22)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:19)
- Location:
- uspace/lib/c/include
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/inttypes.h
re679283 r82fd245 36 36 #define LIBC_INTTYPES_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 38 42 #include <_bits/inttypes.h> 39 43 … … 45 49 #endif 46 50 51 #ifdef __cplusplus 52 } 53 #endif 54 47 55 #endif 48 56 -
uspace/lib/c/include/limits.h
re679283 r82fd245 36 36 #define LIBC_LIMITS_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 38 42 #include <_bits/limits.h> 43 44 #ifdef __cplusplus 45 } 46 #endif 39 47 40 48 #endif -
uspace/lib/c/include/setjmp.h
re679283 r82fd245 34 34 #define LIBC_SETJMP_H_ 35 35 36 #ifdef __cplusplus 37 extern "C" { 38 #endif 39 36 40 #include <libarch/fibril_context.h> 37 41 #include <_bits/__noreturn.h> … … 45 49 extern __noreturn void longjmp(jmp_buf, int); 46 50 51 #ifdef __cplusplus 52 } 53 #endif 54 47 55 #endif 48 56 -
uspace/lib/c/include/stdarg.h
re679283 r82fd245 36 36 #define LIBC_STDARG_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 38 41 39 42 typedef __builtin_va_list va_list; … … 44 47 #define va_copy(dst, src) __builtin_va_copy(dst, src) 45 48 49 #ifdef __cplusplus 50 } 51 #endif 52 46 53 #endif 47 54 -
uspace/lib/c/include/stdbool.h
re679283 r82fd245 36 36 #define LIBC_BOOL_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 38 42 #include <abi/bool.h> 43 44 #ifdef __cplusplus 45 } 46 #endif 39 47 40 48 #ifndef __cplusplus -
uspace/lib/c/include/stddef.h
re679283 r82fd245 36 36 #define LIBC_STDDEF_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 38 42 #include <_bits/size_t.h> 39 43 #include <_bits/ssize_t.h> … … 46 50 ((size_t) &(((type *) 0)->member)) 47 51 52 #ifdef __cplusplus 53 } 54 #endif 55 48 56 #endif 49 57 -
uspace/lib/c/include/stdint.h
re679283 r82fd245 36 36 #define LIBC_STDINT_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 38 42 #include <_bits/stdint.h> 43 44 #ifdef __cplusplus 45 } 46 #endif 39 47 40 48 #endif -
uspace/lib/c/include/stdio.h
re679283 r82fd245 37 37 #define LIBC_STDIO_H_ 38 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 42 39 43 #include <offset.h> 40 44 #include <stdarg.h> … … 214 218 215 219 220 #ifdef __cplusplus 221 } 222 #endif 223 216 224 #endif 217 225 -
uspace/lib/c/include/stdlib.h
re679283 r82fd245 35 35 #ifndef LIBC_STDLIB_H_ 36 36 #define LIBC_STDLIB_H_ 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 37 41 38 42 #include <_bits/size_t.h> … … 104 108 extern lldiv_t lldiv(long long, long long); 105 109 110 #ifdef __cplusplus 111 } 112 #endif 113 106 114 #endif 107 115 -
uspace/lib/c/include/str.h
re679283 r82fd245 36 36 #ifndef LIBC_STR_H_ 37 37 #define LIBC_STR_H_ 38 39 #ifdef __cplusplus 40 extern "C" { 41 #endif 38 42 39 43 #include <errno.h> … … 139 143 extern unsigned long strtoul(const char *, char **, int); 140 144 145 #ifdef __cplusplus 146 } 147 #endif 148 141 149 #endif 142 150 -
uspace/lib/c/include/time.h
re679283 r82fd245 36 36 #define LIBC_TIME_H_ 37 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 41 38 42 #include <sys/time.h> 39 43 40 44 extern time_t time(time_t *); 45 46 #ifdef __cplusplus 47 } 48 #endif 41 49 42 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.