Changeset 8884112 for src/libcfa
- Timestamp:
- Jul 13, 2016, 1:43:57 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- d1b9d78
- Parents:
- a3e1f8f
- Location:
- src/libcfa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/math
ra3e1f8f r8884112 184 184 185 185 float atan2( float, float ); 186 double atan2( double, double ); 186 // extern "C" { double atan2( double, double ); } 187 187 long double atan2( long double, long double ); 188 188 -
src/libcfa/math.c
ra3e1f8f r8884112 23 23 long double fabs( long double x ) { return fabsl( x ); } 24 24 float cabs( float _Complex x ) { return cabsf( x ); } 25 double cabs( double _Complex x ) { return cabs( x ); }26 25 long double cabs( long double _Complex x ) { return cabsl( x ); } 27 26 … … 159 158 160 159 float atan2( float x, float y ) { return atan2f( x, y ); } 161 double atan2( double x, double y ) { return atan2( x, y ); }162 160 long double atan2( long double x, long double y ) { return atan2l( x, y ); } 163 161
Note:
See TracChangeset
for help on using the changeset viewer.