Formerly variable.c.~6~
authorRoland McGrath <roland@redhat.com>
Mon, 15 Jun 1992 22:41:38 +0000 (22:41 +0000)
committerRoland McGrath <roland@redhat.com>
Mon, 15 Jun 1992 22:41:38 +0000 (22:41 +0000)
variable.c

index 7755683..c724660 100644 (file)
@@ -22,14 +22,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "dep.h"
 #include "file.h"
 
-#ifdef __GNUC__
-#define        max(a, b) \
-  ({ register int __a = (a), __b = (b); __a > __b ? __a : __b; })
-#else
-#define max(a, b) ((a) > (b) ? (a) : (b))
-#endif
-
-
 /* Hash table of all global variable definitions.  */
 
 #ifndef        VARIABLE_BUCKETS