_CIpow argument order was confirmed with Starcraft v1.05.

diff --git a/misc/crtdll.c b/misc/crtdll.c
index ad0db60..0507573 100644
--- a/misc/crtdll.c
+++ b/misc/crtdll.c
@@ -2031,7 +2031,6 @@
 	double x,y;
 	POP_FPU(y);
 	POP_FPU(x);
-	FIXME(crtdll,"(%f,%f): argument order unknown! Please report!\n",x,y);
 	return pow(x,y);
 }
 #else