summaryrefslogtreecommitdiff
path: root/src/stdlib/ignore_handler_s.c
blob: 0a4ef62cd07caa2db1be74265b40531ca3b57f54 (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
#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)
*/