From 8492f115890d56c98c1da24b9fdf26bb1b714c05 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 4 Jan 2024 20:36:02 -0300 Subject: Setup stub unit test infrastructure --- src/math/frexpf.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/math/frexpf.c') diff --git a/src/math/frexpf.c b/src/math/frexpf.c index 07870975..c78af9f2 100644 --- a/src/math/frexpf.c +++ b/src/math/frexpf.c @@ -21,3 +21,11 @@ float frexpf(float x, int *e) y.i |= 0x3f000000ul; return y.f; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif -- cgit v1.2.3