@@ -0,0 +1 @@
+#include <assert.h>
+#include <errno.h>
@@ -0,0 +1,5 @@
+#pragma once
+
+namespace std {
+ typedef int jmp_buf[1];
+}
@@ -0,0 +1,21 @@
+#include <stdlib.h>
+ struct div_t {
+ int quot, rem;
+ };
+ struct ldiv_t {
+ long quot, rem;
+ struct lldiv_t {
+ long long quot, rem;
+ struct imaxdiv_t {
+#include <iosfwd>
@@ -0,0 +1,13 @@
+ class bad_alloc;
+ class bad_array_new_length;
+ struct nothrow_t {
+ explicit nothrow_t() = default;
+ extern const nothrow_t nothrow;
+ using new_handler = void (*)();
@@ -1 +1,4 @@
#include <stdtypedefs.h>
+#define EXIT_SUCCESS 0
+#define EXIT_FAILURE 1