blob: 7b05902793947e2d3d50670065bbf5fcffb7884d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#define STDC_HEADERS
#if defined(__STDC__) && __GNUC__ >= 2
#define abort __hide_abort
#define exit __hide_exit
#endif
#include "hosts/std-host.h"
#include <alloca.h>
#undef exit
#undef abort
|