Fix inttypes.h header

This commit is contained in:
Hisham Muhammad
2018-02-04 16:32:41 +01:00
parent 0e38be9ee7
commit 0169577019
3 changed files with 6 additions and 1 deletions

View File

@ -16,6 +16,10 @@ in the source distribution for its full text.
#include "BatteryMeter.h"
#include "DarwinProcess.h"
typedef enum DarwinProcessFields {
LAST_PROCESSFIELD = 100,
} DarwinProcessField;
#ifndef CLAMP
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
#endif