- Timestamp:
- 2020-06-18T15:39:50Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ce52c333
- Parents:
- 4f663f3e
- Location:
- abi/include
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/_bits/wchar_limits.h
r4f663f3e r28a5ebd 38 38 */ 39 39 40 #ifndef _BITS_WCHAR_ MIN_H_41 #define _BITS_WCHAR_ MIN_H_40 #ifndef _BITS_WCHAR_LIMITS_H_ 41 #define _BITS_WCHAR_LIMITS_H_ 42 42 43 /* wchar_t should always be signed int in HelenOS. */43 /* wchar_t should always be int32_t in HelenOS. */ 44 44 45 45 #include <_bits/wchar_t.h> 46 46 47 47 #ifndef __cplusplus 48 _Static_assert(((wchar_t) -1) < 0, "wchar_t is not int");49 _Static_assert(sizeof(wchar_t) == 4, "wchar_t is not int ");48 _Static_assert(((wchar_t) -1) < 0, "wchar_t is not int32_t"); 49 _Static_assert(sizeof(wchar_t) == 4, "wchar_t is not int32_t"); 50 50 #endif 51 51 -
abi/include/inttypes.h
r4f663f3e r28a5ebd 43 43 #include <stdint.h> 44 44 #include <_bits/wchar_t.h> 45 #include <_bits/uchar.h> 45 46 #include <_bits/decls.h> 46 47 … … 337 338 } imaxdiv_t; 338 339 339 intmax_t imaxabs(intmax_t); 340 imaxdiv_t imaxdiv(intmax_t, intmax_t); 341 intmax_t strtoimax(const char *__restrict__, char **__restrict__, int); 342 uintmax_t strtoumax(const char *__restrict__, char **__restrict__, int); 343 intmax_t wcstoimax(const wchar_t *__restrict__, wchar_t **__restrict__, int); 344 uintmax_t wcstoumax(const wchar_t *__restrict__, wchar_t **__restrict__, int); 340 extern intmax_t imaxabs(intmax_t); 341 extern imaxdiv_t imaxdiv(intmax_t, intmax_t); 342 extern intmax_t strtoimax(const char *__restrict__, char **__restrict__, int); 343 extern uintmax_t strtoumax(const char *__restrict__, char **__restrict__, int); 344 extern intmax_t wcstoimax(const wchar_t *__restrict__, wchar_t **__restrict__, 345 int); 346 extern uintmax_t wcstoumax(const wchar_t *__restrict__, wchar_t **__restrict__, 347 int); 345 348 346 349 __C_DECLS_END;
Note:
See TracChangeset
for help on using the changeset viewer.