Changes in uspace/lib/posix/stdlib.h [4f4b4e7:09b0b1fb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.h
r4f4b4e7 r09b0b1fb 43 43 #endif 44 44 45 /* Process Termination */46 45 #undef EXIT_FAILURE 47 46 #define EXIT_FAILURE 1 48 47 #undef EXIT_SUCCESS 49 48 #define EXIT_SUCCESS 0 49 50 #define _exit exit 50 51 #define _Exit exit 51 52 52 53 /* Array Sort Function */ 53 extern void posix_qsort(void *array, size_t count, size_t size, 54 int (*compare)(const void *, const void *)); 54 extern void posix_qsort(void *array, size_t count, size_t size, int (*compare)(const void *, const void *)); 55 55 56 56 /* Environment Access */ … … 60 60 extern char *posix_realpath(const char *restrict name, char *restrict resolved); 61 61 62 /* Floating Point Conversion */62 /* decimal to native floating point conversion */ 63 63 extern float posix_strtof(const char *restrict nptr, char **restrict endptr); 64 64 extern double posix_strtod(const char *restrict nptr, char **restrict endptr); 65 65 extern long double posix_strtold(const char *restrict nptr, char **restrict endptr); 66 66 67 /* Integer Conversion */67 /* decimal to native integer conversion */ 68 68 extern int posix_atoi(const char *str); 69 69
Note:
See TracChangeset
for help on using the changeset viewer.