9 lines
132 B
C
9 lines
132 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/errname.h>
|
|
|
|
const char *rust_helper_errname(int err)
|
|
{
|
|
return errname(err);
|
|
}
|