Changeset 4f4b4e7 in mainline for uspace/lib/posix/stdlib.h
- Timestamp:
- 2011-06-15T23:38:45Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b08ef1fd
- Parents:
- ab547063
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.h
rab547063 r4f4b4e7 43 43 #endif 44 44 45 /* Process Termination */ 45 46 #undef EXIT_FAILURE 46 47 #define EXIT_FAILURE 1 47 48 #undef EXIT_SUCCESS 48 49 #define EXIT_SUCCESS 0 49 50 #define _exit exit51 50 #define _Exit exit 52 51 53 52 /* Array Sort Function */ 54 extern void posix_qsort(void *array, size_t count, size_t size, int (*compare)(const void *, const void *)); 53 extern void posix_qsort(void *array, size_t count, size_t size, 54 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 /* decimal to native floating point conversion */62 /* 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 /* decimal to native integer conversion */67 /* Integer Conversion */ 68 68 extern int posix_atoi(const char *str); 69 69
Note:
See TracChangeset
for help on using the changeset viewer.