Identifier '__value' changed everywhere to '__val' to avoid clashes with Microsoft...
[reactos.git] / reactos / lib / crt / math / atan2.c
index 8a24a3f..0fc14db 100644 (file)
@@ -8,14 +8,14 @@ double atan2 (double __y, double __x);
  */
 double atan2 (double __y, double __x)
 {
-  register double __value;
+  register double __val;
 #ifdef __GNUC__
   __asm __volatile__
     ("fpatan\n\t"
      "fld %%st(0)"
-     : "=t" (__value) : "0" (__x), "u" (__y));
+     : "=t" (__val) : "0" (__x), "u" (__y));
 #else
-  __value = linkme_atan2(__x, __y);
+  __val = linkme_atan2(__x, __y);
 #endif /*__GNUC__*/
-  return __value;
+  return __val;
 }