diff options
author | Roland McGrath <roland@redhat.com> | 1992-06-15 22:41:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-06-15 22:41:38 +0000 |
commit | b5ee5f85399e2526d24ef10a205f43f242485ee4 (patch) | |
tree | c18d71c04aa682b1f18b9079ca75ffa3065af75f | |
parent | febf5d0944461c380ede5d3fb77846a3d86cab6e (diff) | |
download | gunmake-b5ee5f85399e2526d24ef10a205f43f242485ee4.tar.gz |
Formerly variable.c.~6~
-rw-r--r-- | variable.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -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 |