Changeset ceebf0a in mainline for uspace/lib/posix/stdlib.h
- Timestamp:
- 2011-06-09T15:48:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 09b0b1fb
- Parents:
- ae1c11b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/stdlib.h
rae1c11b rceebf0a 1 1 /* 2 2 * Copyright (c) 2011 Petr Koupy 3 * Copyright (c) 2011 Jiri Zarevucky 3 4 * All rights reserved. 4 5 * … … 59 60 extern char *posix_realpath(const char *restrict name, char *restrict resolved); 60 61 62 /* decimal to native floating point conversion */ 63 extern float posix_strtof(const char *restrict nptr, char **restrict endptr); 64 extern double posix_strtod(const char *restrict nptr, char **restrict endptr); 65 extern long double posix_strtold(const char *restrict nptr, char **restrict endptr); 66 61 67 #ifndef LIBPOSIX_INTERNAL 62 68 #define qsort posix_qsort 63 69 #define getenv posix_getenv 64 70 #define realpath posix_realpath 71 72 #define strtof posix_strtof 73 #define strtod posix_strtod 74 #define strtold posix_strtold 65 75 #endif 66 76
Note:
See TracChangeset
for help on using the changeset viewer.