blob: c95ada2fdb818b7fcb891cba4d1d5b9c2bd49a4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef WASM_COMMON_H_
#define WASM_COMMON_H_
#ifdef __cplusplus
#define EXTERN_C extern "C"
#else
#define EXTERN_C
#endif
#define WARN_UNUSED __attribute__ ((warn_unused_result))
typedef enum WasmResult {
WASM_OK,
WASM_ERROR,
} WasmResult;
#endif /* WASM_COMMON_H_ */
|