mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-30 06:42:48 +03:00
1157ee1307
* Add support for fabs, floor, ceil, trunc and round * Add behavior tests
9 lines
216 B
C++
9 lines
216 B
C++
#ifndef ZIG_SOFTFLOAT_EXT_HPP
|
|
#define ZIG_SOFTFLOAT_EXT_HPP
|
|
|
|
#include "softfloat_types.h"
|
|
|
|
void f128M_abs(const float128_t *aPtr, float128_t *zPtr);
|
|
void f128M_trunc(const float128_t *aPtr, float128_t *zPtr);
|
|
|
|
#endif |