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