libfuse
util.h
1#define ROUND_UP(val, round_to) (((val) + (round_to - 1)) & ~(round_to - 1))
2
3int libfuse_strtol(const char *str, long *res);