summaryrefslogtreecommitdiff
path: root/lib9p/protogen
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-02 16:41:26 -0600
committerLuke T. Shumaker <lukeshu@lukeshu.com>2025-04-02 18:42:19 -0600
commit24a331cb177327b3b4a30064150cd99c469a1d11 (patch)
treed2778fe1726d70355be69908f7a28f496230484a /lib9p/protogen
parentc077d93a390be2b00e95b3c91adf3c23bc2d0f27 (diff)
lib9p: Split internal.h up, rename some CONFIG symbols
Diffstat (limited to 'lib9p/protogen')
-rw-r--r--lib9p/protogen/c.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib9p/protogen/c.py b/lib9p/protogen/c.py
index 0c9b21f..c487c03 100644
--- a/lib9p/protogen/c.py
+++ b/lib9p/protogen/c.py
@@ -29,10 +29,12 @@ def gen_c(versions: set[str], typs: list[idl.UserType]) -> str:
#include <string.h> /* for memset() */
#include <libmisc/assert.h>
+#include <libmisc/endian.h>
#include <lib9p/9p.h>
-#include "internal.h"
+#include "tables.h"
+#include "utf8.h"
"""
# utilities ################################################################