aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/int8.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-10-19 14:07:53 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-10-19 14:07:53 -0400
commit1713c56dbf8ffaa01e559c7564928721e363ca39 (patch)
treeb1e1886076b3e44d95e082e2d1a8eb6db1437aec /src/stdlib/int8.c
parent3a2077067343a20f631ec36838e197b34ff422f4 (diff)
Move integer implementation details into separate header/C files, backed
by template headers that use an INT_BITS macro to redefine implementations for different int sizes.
Diffstat (limited to 'src/stdlib/int8.c')
-rw-r--r--src/stdlib/int8.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/stdlib/int8.c b/src/stdlib/int8.c
new file mode 100644
index 00000000..aede5ec6
--- /dev/null
+++ b/src/stdlib/int8.c
@@ -0,0 +1,3 @@
+#define INTX_C_H__INT_BITS 8
+#include "intX.c.h"
+#undef INTX_C_H__INT_BITS