mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-29 09:12:07 +00:00
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);
|
||
|
}
|