blob: 8425cb80a9f0ed551a6f3c44680c0c98b89a56cf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __wasilibc_stdlib_h
#define __wasilibc_stdlib_h
/*
* Include the real implementation, which is factored into a separate file so
* that it can be reused by other libc stdlib implementations.
*/
#include <__functions_malloc.h>
#endif
|