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