aboutsummaryrefslogtreecommitdiff
path: root/src/complex/cabsf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/cabsf.c')
-rw-r--r--src/complex/cabsf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/cabsf.c b/src/complex/cabsf.c
index 619f28d3..7e6a895c 100644
--- a/src/complex/cabsf.c
+++ b/src/complex/cabsf.c
@@ -4,3 +4,11 @@ float cabsf(float complex z)
{
return hypotf(crealf(z), cimagf(z));
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif