aboutsummaryrefslogtreecommitdiff
path: root/src/complex/cpowf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/cpowf.c')
-rw-r--r--src/complex/cpowf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/cpowf.c b/src/complex/cpowf.c
index f3fd4b7b..9ffe222e 100644
--- a/src/complex/cpowf.c
+++ b/src/complex/cpowf.c
@@ -4,3 +4,11 @@ float complex cpowf(float complex z, float complex c)
{
return cexpf(c * clogf(z));
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif