mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-14 13:04:35 +03:00
Fixes for header generation.
This commit is contained in:
5
Meter.c
5
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";
|
||||
|
Reference in New Issue
Block a user