summaryrefslogtreecommitdiff
path: root/userland/libc/include/inttypes.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-22 19:50:38 +0200
committerAnton Kling <anton@kling.gg>2023-10-22 19:50:38 +0200
commit4e09bca9e34c226b6d7e34b4fa11248405fd988e (patch)
tree80f156b7940d9d19971395f335530170c69516c7 /userland/libc/include/inttypes.h
Move everything into a new repo.
Diffstat (limited to 'userland/libc/include/inttypes.h')
-rw-r--r--userland/libc/include/inttypes.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/userland/libc/include/inttypes.h b/userland/libc/include/inttypes.h
new file mode 100644
index 0000000..adde7c8
--- /dev/null
+++ b/userland/libc/include/inttypes.h
@@ -0,0 +1,19 @@
+#include <stdint.h>
+
+// FIXME: These are not correct
+#define PRId8 "d"
+#define PRId16 "d"
+#define PRId32 "d"
+#define PRId64 "d"
+#define PRIu8 "d"
+#define PRIu16 "d"
+#define PRIu32 "d"
+#define PRIu64 "d"
+#define PRIx8 "x"
+#define PRIx16 "x"
+#define PRIx32 "x"
+#define PRIx64 "x"
+#define PRIX8 "x"
+#define PRIX16 "x"
+#define PRIX32 "x"
+#define PRIX64 "x"