mirror of https://github.com/flysand7/ciabatta.git
fix up some comments and strings
This commit is contained in:
parent
20dd512870
commit
d25fd33ad4
|
@ -38,7 +38,7 @@
|
||||||
|
|
||||||
#include "intrin.h"
|
#include "intrin.h"
|
||||||
|
|
||||||
// Platform-independent stuff
|
// Platform-independent functionality
|
||||||
#include "util.c"
|
#include "util.c"
|
||||||
#include "math/basic.c"
|
#include "math/basic.c"
|
||||||
#include "math/division.c"
|
#include "math/division.c"
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
#include "wchar.c"
|
#include "wchar.c"
|
||||||
#include "wctype.c"
|
#include "wctype.c"
|
||||||
|
|
||||||
// Windows stuff
|
// Windows platform functionality
|
||||||
#if defined(CIABATTA_WIN)
|
#if defined(CIABATTA_WIN)
|
||||||
#include "os_win/win.h"
|
#include "os_win/win.h"
|
||||||
#include "os_win/cookie.c"
|
#include "os_win/cookie.c"
|
||||||
|
|
|
@ -210,7 +210,7 @@ char *strtok_r(char *restrict s1, const char *restrict s2, char **restrict ctx)
|
||||||
char *strerror(int errnum) {
|
char *strerror(int errnum) {
|
||||||
switch(errnum) {
|
switch(errnum) {
|
||||||
case 0: return "No errors";
|
case 0: return "No errors";
|
||||||
case EDOM: return "Value is out of domain of the function";
|
case EDOM: return "Value is outside of domain of the function";
|
||||||
case EILSEQ: return "Illegal byte sequence";
|
case EILSEQ: return "Illegal byte sequence";
|
||||||
case ERANGE: return "Value is out of range";
|
case ERANGE: return "Value is out of range";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue