diff options
Diffstat (limited to 'src/complex/cabsf.c')
-rw-r--r-- | src/complex/cabsf.c | 8 |
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 |