Miscellaneous cleanups (#113)

* Tidy up some #include names.

* Move non-cloudlibc sources out of the cloudlibc directory.
This commit is contained in:
Dan Gohman 2019-10-18 13:53:13 -07:00 committed by GitHub
parent c54004fcce
commit b59b83cbc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -3106,14 +3106,14 @@
#define __wasilibc___header_fcntl_h
#define __wasilibc___header_netinet_in_h
#define __wasilibc___header_poll_h
#define __wasilibc___header_stdlib_h
#define __wasilibc___header_string_h
#define __wasilibc___header_sys_ioctl_h
#define __wasilibc___header_sys_resource_h
#define __wasilibc___header_sys_socket_h
#define __wasilibc___header_sys_stat_h
#define __wasilibc___header_time_h
#define __wasilibc___header_unistd_h
#define __wasilibc___headers_stdlib_h
#define __wasilibc___headers_string_h
#define __wasilibc___macro_FD_SETSIZE_h
#define __wasilibc___mode_t_h
#define __wasilibc___seek_h

View File

@ -1,5 +1,5 @@
#ifndef __wasilibc___headers_stdlib_h
#define __wasilibc___headers_stdlib_h
#ifndef __wasilibc___header_stdlib_h
#define __wasilibc___header_stdlib_h
#define __need_size_t
#include <stddef.h>

View File

@ -1,5 +1,5 @@
#ifndef __wasilibc___headers_string_h
#define __wasilibc___headers_string_h
#ifndef __wasilibc___header_string_h
#define __wasilibc___header_string_h
#define __need_size_t
#define __need_NULL

View File

@ -5,6 +5,6 @@
* Include the real implementation, which is factored into a separate file so
* that it can be reused by other libc stdlib implementations.
*/
#include <__headers_stdlib.h>
#include <__header_stdlib.h>
#endif