11cb0ef41Sopenharmony_ci#ifndef __UVWASI_ALLOC_H__ 21cb0ef41Sopenharmony_ci#define __UVWASI_ALLOC_H__ 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ci#include "uvwasi.h" 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_civoid* uvwasi__malloc(const uvwasi_t* uvwasi, size_t size); 71cb0ef41Sopenharmony_civoid uvwasi__free(const uvwasi_t* uvwasi, void* ptr); 81cb0ef41Sopenharmony_civoid* uvwasi__calloc(const uvwasi_t* uvwasi, size_t nmemb, size_t size); 91cb0ef41Sopenharmony_civoid* uvwasi__realloc(const uvwasi_t* uvwasi, void* ptr, size_t size); 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_ci#endif 12