Formerly make.h.~46~

This commit is contained in:
Roland McGrath 1992-06-16 23:43:31 +00:00
parent 29380252a8
commit 498f1b50f7

7
make.h
View file

@ -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