Changeset 25eec4e in mainline for uspace/lib/posix/include/posix/math.h
- Timestamp:
- 2013-04-19T18:38:18Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6d717a4
- Parents:
- a1e2df13 (diff), 289cb7dd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/math.h
ra1e2df13 r25eec4e 36 36 #define POSIX_MATH_H_ 37 37 38 #ifdef __GNUC__ 39 #define HUGE_VAL (__builtin_huge_val()) 40 #endif 41 38 42 /* Normalization Functions */ 39 43 extern double posix_ldexp(double x, int exp); 40 44 extern double posix_frexp(double num, int *exp); 41 45 46 double posix_fabs(double x); 47 double posix_floor(double x); 48 double posix_modf(double x, double *iptr); 49 double posix_fmod(double x, double y); 50 double posix_pow(double x, double y); 51 double posix_exp(double x); 52 double posix_sqrt(double x); 53 double posix_log(double x); 54 double posix_sin(double x); 55 double posix_cos(double x); 56 double posix_atan2(double y, double x); 57 42 58 #ifndef LIBPOSIX_INTERNAL 43 59 #define ldexp posix_ldexp 44 60 #define frexp posix_frexp 61 62 #define fabs posix_fabs 63 #define floor posix_floor 64 #define modf posix_modf 65 #define fmod posix_fmod 66 #define pow posix_pow 67 #define exp posix_exp 68 #define sqrt posix_sqrt 69 #define log posix_log 70 #define sin posix_sin 71 #define cos posix_cos 72 #define atan2 posix_atan2 45 73 #endif 46 74
Note:
See TracChangeset
for help on using the changeset viewer.