mirror of https://github.com/xzeldon/htop.git
Fix inttypes.h header
This commit is contained in:
parent
e48b63b585
commit
4aba5d878d
|
@ -28,7 +28,6 @@ in the source distribution for its full text.
|
|||
#include <time.h>
|
||||
#include <assert.h>
|
||||
#include <math.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#ifdef __ANDROID__
|
||||
#define SYS_ioprio_get __NR_ioprio_get
|
||||
|
@ -46,6 +45,7 @@ in the source distribution for its full text.
|
|||
#include "Object.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#define PROCESS_FLAG_IO 0x0001
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ in the source distribution for its full text.
|
|||
#include "Object.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#define PROCESS_FLAG_IO 0x0001
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue