xref: /third_party/node/deps/uvwasi/src/uvwasi_alloc.h (revision 1cb0ef41)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/deps/uvwasi/src/
1#ifndef __UVWASI_ALLOC_H__
2#define __UVWASI_ALLOC_H__
3
4#include "uvwasi.h"
5
6void* uvwasi__malloc(const uvwasi_t* uvwasi, size_t size);
7void uvwasi__free(const uvwasi_t* uvwasi, void* ptr);
8void* uvwasi__calloc(const uvwasi_t* uvwasi, size_t nmemb, size_t size);
9void* uvwasi__realloc(const uvwasi_t* uvwasi, void* ptr, size_t size);
10
11#endif
12

Indexes created Thu Nov 07 10:32:03 CST 2024