diff options
author | Roland McGrath <roland@redhat.com> | 1992-06-16 23:43:31 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-06-16 23:43:31 +0000 |
commit | 498f1b50f764cd9d8c686c1dbf4ea0ee914c837f (patch) | |
tree | ff8955b3d1d555425698df085297e4e0ee96af20 | |
parent | 29380252a8bd3d9d0f43a691f3a2a88c7c102999 (diff) | |
download | gunmake-498f1b50f764cd9d8c686c1dbf4ea0ee914c837f.tar.gz |
Formerly make.h.~46~
-rw-r--r-- | make.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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 |