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