You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
431 B

// Header files included here will be extracted from the host.
// Freestanding implementation headers [C++11 17.6.1.3/2]. These all
// contain compiler-specific code that we can't simply reproduce
// ourselves.
#include <cstddef>
#include <cstdint>
#include <typeinfo>
#include <exception>
#include <initializer_list>
#include <type_traits>
#include <atomic>
// Likewise for C [C11 4/6].
#include <stddef.h>
#include <stdint.h>