[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / math / atan2f.c
diff --git a/reactos/lib/sdk/crt/math/atan2f.c b/reactos/lib/sdk/crt/math/atan2f.c
deleted file mode 100644 (file)
index c16a281..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-
-#include <math.h>
-
-_Check_return_
-float
-__cdecl
-atan2f(
-    _In_ float x,
-    _In_ float y)
-{
-    return (float)atan2((double)x,(double)y);
-}