Fixes for header generation.

This commit is contained in:
Hisham Muhammad
2006-03-23 18:55:29 +00:00
parent 0df3ea08d3
commit 130938f691
5 changed files with 20 additions and 5 deletions

View File

@ -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";