diff options
Diffstat (limited to 'src/complex/catanf.c')
-rw-r--r-- | src/complex/catanf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/catanf.c b/src/complex/catanf.c index 1d569f2d..5a397153 100644 --- a/src/complex/catanf.c +++ b/src/complex/catanf.c @@ -103,3 +103,11 @@ float complex catanf(float complex z) w = CMPLXF(w, 0.25f * logf(a)); return w; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |