blob: 78d92307ab98f230986843f30e0421a7117788de (
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
|
#include <stdlib.h>
#include "_stdlib.h"
/** ignore constraint violations **/
void ignore_handler_s(const char * restrict msg, void * restrict ptr, errno_t error)
{
SIGNAL_SAFE(0);
(void)msg; (void)ptr; (void)error;
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)
*/
|