LibC: Remove errno EEXISTS

I don't know why I had added this. It doesn't seem to be a thing on
either POSIX or linux. This was literally equivalent to EXIST
This commit is contained in:
2024-12-02 17:47:04 +02:00
parent d58ca5f37a
commit 415b20f884
5 changed files with 1 additions and 6 deletions

View File

@@ -174,7 +174,6 @@ static const char* errno_to_string(int error)
case ETXTBSY: return "Text file busy.";
case EWOULDBLOCK: return "Operation would block.";
case EXDEV: return "Cross-device link.";
case EEXISTS: return "File exists";
case ENOTBLK: return "Block device required";
case EUNKNOWN: return "Unknown error";
}