From 130938f69112057b2786b07b17e8686578a292ac Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 23 Mar 2006 18:55:29 +0000 Subject: Fixes for header generation. --- Meter.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Meter.c') diff --git a/Meter.c b/Meter.c index c35b6a9d..c405e556 100644 --- a/Meter.c +++ b/Meter.c @@ -1,6 +1,6 @@ /* htop - Meter.c -(C) 2004,2005 Hisham H. Muhammad +(C) 2004-2006 Hisham H. Muhammad Released under the GNU GPL, see the COPYING file in the source distribution for its full text. */ @@ -66,6 +66,9 @@ extern char* METER_CLASS; #ifndef MIN #define MIN(a,b) ((a)<(b)?(a):(b)) #endif +#ifndef MAX +#define MAX(a,b) ((a)>(b)?(a):(b)) +#endif /* private property */ char* METER_CLASS = "Meter"; -- cgit v1.2.3