Changeset bc56f30 in mainline for uspace/lib/c/include/stdlib.h
- Timestamp:
- 2019-05-27T12:38:26Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d14c25
- Parents:
- 4d51c60
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-13 16:06:49)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-05-27 12:38:26)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/stdlib.h
r4d51c60 rbc56f30 36 36 #define _LIBC_STDLIB_H_ 37 37 38 #ifdef __cplusplus39 extern "C" {40 #endif41 42 38 #include <_bits/size_t.h> 43 39 #include <_bits/wchar_t.h> 40 #include <_bits/decls.h> 44 41 #include <bsearch.h> 45 42 #include <malloc.h> 46 43 #include <qsort.h> 44 45 #define EXIT_SUCCESS 0 46 #define EXIT_FAILURE 1 47 48 #define RAND_MAX 714025 49 50 #define MB_CUR_MAX 4 51 52 __C_DECLS_BEGIN; 47 53 48 54 /** Type returned by the div function */ … … 69 75 long long rem; 70 76 } lldiv_t; 71 72 #define EXIT_FAILURE 173 #define EXIT_SUCCESS 074 75 #define RAND_MAX 71402576 77 #define MB_CUR_MAX 478 77 79 78 extern long double strtold(const char *, char **); … … 109 108 extern lldiv_t lldiv(long long, long long); 110 109 111 #ifdef __cplusplus 112 } 113 #endif 110 __C_DECLS_END; 114 111 115 112 #endif
Note:
See TracChangeset
for help on using the changeset viewer.