Add fake stdint.h to satisfy stb_image

This commit is contained in:
John Lorentzson 2025-05-01 22:35:06 +02:00
parent 02d59bb062
commit deb85bde67

6
fakes/stdint.h Normal file
View file

@ -0,0 +1,6 @@
#pragma once
typedef unsigned short uint16_t;
typedef short int16_t;
typedef unsigned int uint32_t;
typedef int int32_t;