summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/errno/EILSEQ.c7
-rw-r--r--src/errno/ERANGE.c2
2 files changed, 6 insertions, 3 deletions
diff --git a/src/errno/EILSEQ.c b/src/errno/EILSEQ.c
index cb8f42e7..45cb2c41 100644
--- a/src/errno/EILSEQ.c
+++ b/src/errno/EILSEQ.c
@@ -1,7 +1,10 @@
#include <errno.h>
#define EILSEQ (3)
-/** Illegal sequence / Illegal byte sequence **/
-
+/** illegal sequence **/
+/***
+is used to indicate that an incorrect sequence of bytes was encountered when
+transforming a multi-byte character into a wide character.
+***/
/*
STDC(199409)
*/
diff --git a/src/errno/ERANGE.c b/src/errno/ERANGE.c
index 70b47572..c3c757e4 100644
--- a/src/errno/ERANGE.c
+++ b/src/errno/ERANGE.c
@@ -2,7 +2,7 @@
#define ERANGE (2)
/** out of range **/
/***
-used to indicated that the result of an operation is too large or too small.
+is used to indicated that the result of an operation is too large or too small.
***/
/*
STDC(1)