From deb85bde671683b48e348bd70297a272cac4381f Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Thu, 1 May 2025 22:35:06 +0200 Subject: [PATCH] Add fake stdint.h to satisfy stb_image --- fakes/stdint.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 fakes/stdint.h diff --git a/fakes/stdint.h b/fakes/stdint.h new file mode 100644 index 00000000..d799d3be --- /dev/null +++ b/fakes/stdint.h @@ -0,0 +1,6 @@ +#pragma once + +typedef unsigned short uint16_t; +typedef short int16_t; +typedef unsigned int uint32_t; +typedef int int32_t;