summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bit.h (renamed from src/int.h)6
-rw-r--r--src/trie.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/int.h b/src/bit.h
index 885933d..efd7d27 100644
--- a/src/int.h
+++ b/src/bit.h
@@ -5,8 +5,8 @@
* Bits & bytes.
*/
-#ifndef BFS_INT_H
-#define BFS_INT_H
+#ifndef BFS_BIT_H
+#define BFS_BIT_H
#include "config.h"
#include <limits.h>
@@ -352,4 +352,4 @@ UINT_OVERLOADS(BIT_CEIL)
#endif // __STDC_VERSION__ < 202311L
-#endif // BFS_INT_H
+#endif // BFS_BIT_H
diff --git a/src/trie.c b/src/trie.c
index 2226890..7c2f65d 100644
--- a/src/trie.c
+++ b/src/trie.c
@@ -82,9 +82,9 @@
*/
#include "trie.h"
+#include "bit.h"
#include "config.h"
#include "diag.h"
-#include "int.h"
#include "list.h"
#include <assert.h>
#include <limits.h>