blob: d1006bec1fbd176eaa24a2eb663a504ac1d7c351 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "_stdlib.h"
#if ! (__STDC_VERSION__ >= 201112 && defined __STDC_WANT_LIB_EXT1__)
#define abort_handler_s __abort_handler_s
#endif
struct __stdlib __stdlib = {
.constraint_handler = abort_handler_s,
};
/*
STDC(0)
SIGNAL_SAFE(0)
*/
|