diff options
Diffstat (limited to 'src/complex/cabs.c')
-rw-r--r-- | src/complex/cabs.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/cabs.c b/src/complex/cabs.c index c5ad58ab..29a8b616 100644 --- a/src/complex/cabs.c +++ b/src/complex/cabs.c @@ -4,3 +4,11 @@ double cabs(double complex z) { return hypot(creal(z), cimag(z)); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |