ref: 5c0d011f240bb77c9889c3d92548a6f799cf0fca
parent: 4af636fad493a0d2f5f2e10b3c4d72ad2c0a29a7
author: Jacob Moody <moody@posixcafe.org>
date: Mon Mar 6 00:17:37 EST 2023
stdint: include guard, found some code that defined it itself
--- a/include/npe/inttypes.h
+++ b/include/npe/inttypes.h
@@ -3,7 +3,9 @@
#include <stdint.h>
+#ifndef CHAR_BIT
#define CHAR_BIT 8
+#endif
#define PRId64 "%lld"
#define PRIu64 "%llud"