Changes in uspace/lib/softfloat/sub.h [2416085:c0c38c7c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/softfloat/sub.h
r2416085 rc0c38c7c 37 37 #define __SUB_H__ 38 38 39 #include <mathtypes.h> 40 39 41 extern float32 sub_float32(float32, float32); 40 42 extern float64 sub_float64(float64, float64); … … 42 44 extern float128 sub_float128(float128, float128); 43 45 46 #ifdef float32_t 47 extern float32_t __subsf3(float32_t, float32_t); 48 extern float32_t __aeabi_fsub(float32_t, float32_t); 49 #endif 50 51 #ifdef float64_t 52 extern float64_t __subdf3(float64_t, float64_t); 53 extern float64_t __aeabi_dsub(float64_t, float64_t); 54 #endif 55 56 #ifdef float128_t 57 extern float128_t __subtf3(float128_t, float128_t); 58 extern void _Qp_sub(float128_t *, float128_t *, float128_t *); 59 #endif 60 44 61 #endif 45 62
Note:
See TracChangeset
for help on using the changeset viewer.