Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
mkl
/
linux-can
/
c9d1b0b54258ba13b567dd116ead3c7c30cba7d8
/
.
/
rust
/
helpers
/
cred.c
blob: fde7ae20cdd19f04ac5f28808586c65de6b72f09 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/cred.h>
const
struct
cred
*
rust_helper_get_cred
(
const
struct
cred
*
cred
)
{
return
get_cred
(
cred
);
}
void
rust_helper_put_cred
(
const
struct
cred
*
cred
)
{
put_cred
(
cred
);
}