aboutsummaryrefslogtreecommitdiffstats
path: root/lib/util.h
blob: 74ce74845854e022b2332bf3d2b8bcd1d212d0ce (plain) (blame)
1
2
3
#define ROUND_UP(val, round_to) (((val) + (round_to - 1)) & ~(round_to - 1))

int libfuse_strtol(const char *str, long *res);