Formerly make.h.~46~
authorRoland McGrath <roland@redhat.com>
Tue, 16 Jun 1992 23:43:31 +0000 (23:43 +0000)
committerRoland McGrath <roland@redhat.com>
Tue, 16 Jun 1992 23:43:31 +0000 (23:43 +0000)
make.h

diff --git a/make.h b/make.h
index 18df6cd..94a9a62 100644 (file)
--- a/make.h
+++ b/make.h
@@ -280,10 +280,3 @@ extern unsigned int makelevel;
 #define DEBUGPR(msg) \
   do if (debug_flag) { print_spaces (depth); printf (msg, file->name); \
                       fflush (stdout); } while (0)
-
-#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