mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
14 lines
228 B
C
14 lines
228 B
C
![]() |
// 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);
|
||
|
}
|