summaryrefslogtreecommitdiff
path: root/make.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-06-16 23:43:31 +0000
committerRoland McGrath <roland@redhat.com>1992-06-16 23:43:31 +0000
commit498f1b50f764cd9d8c686c1dbf4ea0ee914c837f (patch)
treeff8955b3d1d555425698df085297e4e0ee96af20 /make.h
parent29380252a8bd3d9d0f43a691f3a2a88c7c102999 (diff)
downloadgunmake-498f1b50f764cd9d8c686c1dbf4ea0ee914c837f.tar.gz
Formerly make.h.~46~
Diffstat (limited to 'make.h')
-rw-r--r--make.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/make.h b/make.h
index 18df6cd..94a9a62 100644
--- 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