From 6b1880077a4a2a17cd878031caad26612222222a Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Fri, 10 Jul 2020 13:05:52 -0400 Subject: [PATCH] chore: refactor out u16 --- runtime/include/types.h | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/include/types.h b/runtime/include/types.h index d021c1f..74e1f58 100644 --- a/runtime/include/types.h +++ b/runtime/include/types.h @@ -39,7 +39,6 @@ typedef signed char i8; typedef unsigned char u8; typedef int16_t i16; -typedef uint16_t u16; /* FIXME: per-module configuration? */ #define WASM_PAGE_SIZE (1024 * 64) /* 64KB */