diff options
Diffstat (limited to 'lib/util.h')
-rw-r--r-- | lib/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1 +1,3 @@ +#define ROUND_UP(val, round_to) (((val) + (round_to - 1)) & ~(round_to - 1)) + int libfuse_strtol(const char *str, long *res); |