add sigar_strtoull
This commit is contained in:
parent
10e8d8804f
commit
768b4c31ed
|
@ -29,6 +29,9 @@
|
|||
#define sigar_strtoul(ptr) \
|
||||
strtoul(ptr, &ptr, 10)
|
||||
|
||||
#define sigar_strtoull(ptr) \
|
||||
strtoull(ptr, &ptr, 10)
|
||||
|
||||
#define sigar_isspace(c) \
|
||||
(isspace(((unsigned char)(c))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue