wasm-micro-runtime/core/iwasm/libraries/libc-wasi
Benbuck Nason 7744e84607
ssp_config.h: Fix ifdef for android random api (#3444)
It looks like the preferred preprocessor check for Android is `__ANDROID__`
instead of `ANDROID`:
https://groups.google.com/g/android-ndk/c/cf9_f1SLXls

Change `(defined(ANDROID) && __ANDROID_API__ < 28)` to
`((defined(ANDROID) || defined(__ANDROID__)) && (__ANDROID_API__ < 28))`.
2024-05-18 20:23:34 +08:00
..
sandboxed-system-primitives ssp_config.h: Fix ifdef for android random api (#3444) 2024-05-18 20:23:34 +08:00
libc_wasi_wrapper.c Refactor APIs and data structures as preliminary work for Memory64 (#3209) 2024-03-12 11:38:50 +08:00
libc_wasi_wrapper.h Return uint32 from WASI functions (#2749) 2023-11-13 20:07:32 +08:00
libc_wasi.cmake Enable AoT and wamr-sdk, and change arguments of call wasm API (#157) 2020-01-21 13:26:14 +08:00
SConscript add porting codes of rt-thread (#494) 2021-01-14 11:26:35 +08:00