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:
@@ -89,7 +89,6 @@ __BEGIN_DECLS
|
||||
#define EWOULDBLOCK 80
|
||||
#define EXDEV 81
|
||||
#define ENOTBLK 82
|
||||
#define EEXISTS 83
|
||||
|
||||
#define EUNKNOWN 0xFF
|
||||
|
||||
|
||||
@@ -492,7 +492,6 @@ const char* strerrorname_np(int error)
|
||||
case ETXTBSY: return "ETXTBSY";
|
||||
case EWOULDBLOCK: return "EWOULDBLOCK";
|
||||
case EXDEV: return "EXDEV";
|
||||
case EEXISTS: return "EEXISTS";
|
||||
case ENOTBLK: return "ENOTBLK";
|
||||
case EUNKNOWN: return "EUNKNOWN";
|
||||
}
|
||||
@@ -587,7 +586,6 @@ const char* strerrordesc_np(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";
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user