site: emcc skip some typedefs

This commit is contained in:
Alex Garcia 2024-04-20 17:16:35 -07:00
parent d0dafe4128
commit a06df1e889

View file

@ -53,10 +53,12 @@ SQLITE_EXTENSION_INIT1
#endif
#ifndef _WIN32
#ifndef __EMSCRIPTEN__
typedef u_int8_t uint8_t;
typedef u_int16_t uint16_t;
typedef u_int64_t uint64_t;
#endif
#endif
typedef int8_t i8;
typedef uint8_t u8;