From 51992ab01ad7e6dfeced16615080b68f620bb122 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 13 Aug 2026 12:10:44 -0700 Subject: [PATCH] libghostty: make device and point headers self-contained --- include/ghostty/vt/device.h | 2 ++ include/ghostty/vt/point.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/ghostty/vt/device.h b/include/ghostty/vt/device.h index 0a1567280..419748a86 100644 --- a/include/ghostty/vt/device.h +++ b/include/ghostty/vt/device.h @@ -11,6 +11,8 @@ #include #include +#include + /* DA1 conformance levels (Pp parameter). */ #define GHOSTTY_DA_CONFORMANCE_VT100 1 #define GHOSTTY_DA_CONFORMANCE_VT101 1 diff --git a/include/ghostty/vt/point.h b/include/ghostty/vt/point.h index 8b717f494..9cab2758b 100644 --- a/include/ghostty/vt/point.h +++ b/include/ghostty/vt/point.h @@ -9,6 +9,8 @@ #include +#include + #ifdef __cplusplus extern "C" { #endif