this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Avoid redefining types in wasm api

authored by

phcoder and committed by
Vladimir Serbinenko
3b701176 5da8ee52

+9
+9
src/api/wasm.c
··· 32 32 33 33 #include <ctype.h> 34 34 35 + // Avoid redefining u* ans s* 36 + #define d_m3ShortTypesDefined 1 37 + typedef int8_t i8; 38 + typedef int16_t i16; 39 + typedef int32_t i32; 40 + typedef int64_t i64; 41 + typedef double f64; 42 + typedef float f32; 43 + 35 44 #include "wasm3.h" 36 45 #include "m3_exec_defs.h" 37 46 #include "m3_exception.h"