wasi-libc/libc-bottom-half/headers/public/stdlib.h
Dan Gohman 753cc4344d
Merge the basics component into libc-bottom-half. (#199)
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.
2020-06-01 16:44:05 -07:00

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