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