add sigar_strtoull

This commit is contained in:
Doug MacEachern 2006-10-10 16:27:01 +00:00
parent 10e8d8804f
commit 768b4c31ed
1 changed files with 3 additions and 0 deletions

View File

@ -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))))