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