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