about summary refs log tree commit diff
path: root/math
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-19 16:05:36 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-19 16:05:36 +0000
commitcfb32a6c81a6ca19115ab40bdfb5329cd0fffea8 (patch)
treec7a956f160447a22e8f6d9bfbd2dfea0e7bb7598 /math
parentce85d65bae842fad22fa8e9cb4ad122daeef7831 (diff)
downloadglibc-cfb32a6c81a6ca19115ab40bdfb5329cd0fffea8.tar.gz
glibc-cfb32a6c81a6ca19115ab40bdfb5329cd0fffea8.tar.xz
glibc-cfb32a6c81a6ca19115ab40bdfb5329cd0fffea8.zip
Update.
1998-10-19 18:59 -0400  Zack Weinberg  <zack@rabi.phys.columbia.edu>

	* math/tgmath.h (__TGMATH_UNARY_REAL_IMAG): Fix typo: val -> Val.
	(atan2): Takes two arguments.
Diffstat (limited to 'math')
-rw-r--r--math/tgmath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/math/tgmath.h b/math/tgmath.h
index b95d55be44..76513f7ea8 100644
--- a/math/tgmath.h
+++ b/math/tgmath.h
@@ -83,11 +83,11 @@
 			: Fct##f (Val1, Val2, Val3))))
 
 # define __TGMATH_UNARY_REAL_IMAG(Val, Fct, Cfct) \
-     (__extension__ (sizeof (__real__ (val)) > sizeof (double)		      \
+     (__extension__ (sizeof (__real__ (Val)) > sizeof (double)		      \
 		     ? (sizeof (__real__ (Val)) == sizeof (Val)		      \
 			? Fct##l (Val)					      \
 			: Cfct##l (Val))				      \
-		     : (sizeof (__real__ (val)) == sizeof (double)	      \
+		     : (sizeof (__real__ (Val)) == sizeof (double)	      \
 			? (sizeof (__real__ (Val)) == sizeof (Val)	      \
 			   ? Fct (Val)					      \
 			   : Cfct (Val))				      \
@@ -138,7 +138,7 @@
 /* Arc tangent of X.  */
 #define atan(Val) __TGMATH_UNARY_REAL_IMAG (Val, atan, catan)
 /* Arc tangent of Y/X.  */
-#define atan2(Val) __TGMATH_UNARY_REAL_ONLY (Val, atan2)
+#define atan2(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, atan2)
 
 /* Cosine of X.  */
 #define cos(Val) __TGMATH_UNARY_REAL_IMAG (Val, cos, ccos)