clang-format
This commit is contained in:
@@ -33,11 +33,9 @@
|
||||
/*
|
||||
* Standard C function to return a string for a given errno.
|
||||
*/
|
||||
const char *
|
||||
strerror(int errcode)
|
||||
{
|
||||
if (errcode>=0 && errcode < sys_nerr) {
|
||||
return sys_errlist[errcode];
|
||||
}
|
||||
return "Unknown error number";
|
||||
const char *strerror(int errcode) {
|
||||
if (errcode >= 0 && errcode < sys_nerr) {
|
||||
return sys_errlist[errcode];
|
||||
}
|
||||
return "Unknown error number";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user