summaryrefslogtreecommitdiff
path: root/src/stdlib/ignore_handler_s.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/ignore_handler_s.c')
-rw-r--r--src/stdlib/ignore_handler_s.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/stdlib/ignore_handler_s.c b/src/stdlib/ignore_handler_s.c
new file mode 100644
index 00000000..0a4ef62c
--- /dev/null
+++ b/src/stdlib/ignore_handler_s.c
@@ -0,0 +1,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)
+*/