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