mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-28 15:57:48 +00:00
Formerly make.h.~45~
This commit is contained in:
parent
9e37e514d2
commit
febf5d0944
1 changed files with 7 additions and 0 deletions
7
make.h
7
make.h
|
@ -280,3 +280,10 @@ 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
|
||||
|
|
Loading…
Reference in a new issue