summaryrefslogtreecommitdiff
path: root/src/string/strerror_s.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strerror_s.c')
-rw-r--r--src/string/strerror_s.c18
1 files changed, 3 insertions, 15 deletions
diff --git a/src/string/strerror_s.c b/src/string/strerror_s.c
index bffc2a5d..c78b0bba 100644
--- a/src/string/strerror_s.c
+++ b/src/string/strerror_s.c
@@ -1,21 +1,12 @@
-#if 0
-
#include <string.h>
#include <errno.h>
-#include "__strerror.h"
+#include "_safety.h"
/** convert error number to string **/
errno_t strerror_s(char *s, rsize_t maxsize, errno_t errnum)
{
- __C_EXT(1, 201112L);
- if (errnum > __nstrerror || __strerror[errnum] == NULL) {
- if (snprintf(s, maxsize, "Uknown error [%d]", errnum) < maxsize) {
- return 0;
- }
- return 1;
- }
-
- strncpy(s, __strerror[errnum], maxsize);
+ SIGNAL_SAFE(0);
+ (void)s; (void)maxsize; (void)errnum;
return errnum;
}
@@ -35,6 +26,3 @@ subsequent calls.
/*
CEXT1(201112)
*/
-
-
-#endif