summaryrefslogtreecommitdiff
path: root/lib/base32.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base32.h')
-rw-r--r--lib/base32.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/base32.h b/lib/base32.h
index 4145fe7a03..a2abea6825 100644
--- a/lib/base32.h
+++ b/lib/base32.h
@@ -21,9 +21,6 @@
/* Get idx_t. */
# include <idx.h>
-/* Get bool. */
-# include <stdbool.h>
-
/* This uses that the expression (n+(k-1))/k means the smallest
integer >= n/k, i.e., the ceiling of n/k. */
# define BASE32_LENGTH(inlen) ((((inlen) + 4) / 5) * 8)