blob: 6ef026ebbc3f3891ed72e2966da64c2bc2243c04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#if 0
#include <stdlib.h>
/** ignore constraint violations **/
void ignore_handler_s(const char * restrict msg, void * restrict ptr, errno_t error)
{
__C_EXT(1, 201112L);
return;
}
/***
The fn(ignore_handler_s) function is suitable for use as the system constraint
handler as set by fn(set_constraint_handler_s).
It simply returns to its caller.
***/
/* UNDEFINED: - */
/* UNSPECIFIED: - */
/* IMPLEMENTATION: - */
/* LOCALE: - */
/*
CEXT1(201112)
*/
#endif
|