mirror of
https://github.com/mirror/make.git
synced 2025-01-31 23:00:16 +08:00
Formerly variable.c.~6~
This commit is contained in:
parent
febf5d0944
commit
b5ee5f8539
@ -22,14 +22,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
||||
#include "dep.h"
|
||||
#include "file.h"
|
||||
|
||||
#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
|
||||
|
||||
|
||||
/* Hash table of all global variable definitions. */
|
||||
|
||||
#ifndef VARIABLE_BUCKETS
|
||||
|
Loading…
Reference in New Issue
Block a user