mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-18 19:07:09 +00:00

We no longer have a need to maintain basics as a separate component. Folding it into libc-bottom-half eliminates a fair amount of redundancy.
11 lines
245 B
C
11 lines
245 B
C
#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
|