Tiny LibC things.

This commit is contained in:
Andreas Kling
2018-11-05 14:50:41 +01:00
parent 9e62eb4856
commit 8039a20611
11 changed files with 6 additions and 2 deletions

View File

@@ -132,7 +132,7 @@ char* strncat(char *dest, const char *src, size_t n)
return dest;
}
const char* strerror(int errnum)
char* strerror(int errnum)
{
switch (errnum) {
case 0: return "No error";