From f5443ac4f06582c2a98926b164177dccdfbc00f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C5=8Dshin?= Date: Sat, 1 Jun 2024 13:22:18 -0700 Subject: [PATCH] Fix missing include (Sadly not doing plan9-style includes here.) --- tool/decode/lib/disassemblehex.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tool/decode/lib/disassemblehex.h b/tool/decode/lib/disassemblehex.h index eb8224077..35ec894e3 100644 --- a/tool/decode/lib/disassemblehex.h +++ b/tool/decode/lib/disassemblehex.h @@ -1,6 +1,8 @@ #ifndef COSMOPOLITAN_TOOL_DECODE_LIB_DISASSEMBLEHEX_H_ #define COSMOPOLITAN_TOOL_DECODE_LIB_DISASSEMBLEHEX_H_ +#include "libc/stdio/stdio.h" + #define kDisassembleHexColumns 8 COSMOPOLITAN_C_START_