Changes in uspace/lib/c/include/stdlib.h [bc56f30:09ab0a9a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/lib/c/include/stdlib.h ¶
rbc56f30 r09ab0a9a 33 33 */ 34 34 35 #ifndef _LIBC_STDLIB_H_ 36 #define _LIBC_STDLIB_H_ 35 #ifndef LIBC_STDLIB_H_ 36 #define LIBC_STDLIB_H_ 37 38 #ifdef __cplusplus 39 extern "C" { 40 #endif 37 41 38 42 #include <_bits/size_t.h> 39 43 #include <_bits/wchar_t.h> 40 #include <_bits/decls.h>41 44 #include <bsearch.h> 42 45 #include <malloc.h> 43 46 #include <qsort.h> 44 45 #define EXIT_SUCCESS 046 #define EXIT_FAILURE 147 48 #define RAND_MAX 71402549 50 #define MB_CUR_MAX 451 52 __C_DECLS_BEGIN;53 47 54 48 /** Type returned by the div function */ … … 75 69 long long rem; 76 70 } lldiv_t; 71 72 #define EXIT_FAILURE 1 73 #define EXIT_SUCCESS 0 74 75 #define RAND_MAX 714025 76 77 #define MB_CUR_MAX 4 77 78 78 79 extern long double strtold(const char *, char **); … … 108 109 extern lldiv_t lldiv(long long, long long); 109 110 110 __C_DECLS_END; 111 #ifdef __cplusplus 112 } 113 #endif 111 114 112 115 #endif
Note:
See TracChangeset
for help on using the changeset viewer.