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