diff options
Diffstat (limited to 'util.c')
| -rw-r--r-- | util.c | 16 |
1 files changed, 0 insertions, 16 deletions
@@ -261,19 +261,3 @@ out: return p; } - -/* Returns end - start + 1, assuming start < end */ -u64 u64_range(u64 start, u64 end) -{ - u64 res; - - res.h = end.h - start.h; - res.l = end.l - start.l; - - if (end.l < start.l) - res.h--; - if (++res.l == 0) - res.h++; - - return res; -} |
