diff options
Diffstat (limited to 'cmd/zstream/zstream_redup.c')
-rw-r--r-- | cmd/zstream/zstream_redup.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cmd/zstream/zstream_redup.c b/cmd/zstream/zstream_redup.c index 6866639fe..dccd325d4 100644 --- a/cmd/zstream/zstream_redup.c +++ b/cmd/zstream/zstream_redup.c @@ -56,15 +56,6 @@ typedef struct redup_table { int numhashbits; } redup_table_t; -int -highbit64(uint64_t i) -{ - if (i == 0) - return (0); - - return (NBBY * sizeof (uint64_t) - __builtin_clzll(i)); -} - void * safe_calloc(size_t n) { |