projects
/
platform
/
upstream
/
make.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2938025
)
Formerly make.h.~46~
author
Roland McGrath
<roland@redhat.com>
Tue, 16 Jun 1992 23:43:31 +0000
(23:43 +0000)
committer
Roland McGrath
<roland@redhat.com>
Tue, 16 Jun 1992 23:43:31 +0000
(23:43 +0000)
make.h
patch
|
blob
|
history
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