diff options
Diffstat (limited to 'src/complex/csqrtf.c')
-rw-r--r-- | src/complex/csqrtf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/csqrtf.c b/src/complex/csqrtf.c index a6163974..cde2210a 100644 --- a/src/complex/csqrtf.c +++ b/src/complex/csqrtf.c @@ -80,3 +80,11 @@ float complex csqrtf(float complex z) return CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b)); } } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |