aboutsummaryrefslogtreecommitdiff
path: root/src/zjs_common.h
diff options
context:
space:
mode:
authorJimmy Huang <jimmy.huang@linux.intel.com>2017-06-29 12:37:46 -0700
committerGeoff Gustafson <geoff@linux.intel.com>2017-06-29 12:37:46 -0700
commitdf40f83ee3c14ec44ca01c3bd032df2f279d3cae (patch)
tree7377ef25720c57e11a0e2a0fa0b2cf7c99943db7 /src/zjs_common.h
parent3403f93620dced003477122777f17727573000d8 (diff)
[build] Fix linux and QEMU build on Mac (#1307)
Disable ocf build and fixed linux build on MacOS. Fixes #1290 Signed-off-by: Jimmy Huang <jimmy.huang@intel.com>
Diffstat (limited to 'src/zjs_common.h')
-rw-r--r--src/zjs_common.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/zjs_common.h b/src/zjs_common.h
index d9ced8b..4e113b1 100644
--- a/src/zjs_common.h
+++ b/src/zjs_common.h
@@ -11,14 +11,7 @@
#endif
#ifdef ZJS_LINUX_BUILD
-typedef int8_t s8_t;
-typedef uint8_t u8_t;
-typedef int16_t s16_t;
-typedef uint16_t u16_t;
-typedef int32_t s32_t;
-typedef uint32_t u32_t;
-typedef int64_t s64_t;
-typedef uint64_t u64_t;
+#include "zjs_linux_port.h"
#else
#include <zephyr/types.h>
#endif