Revision f7798711adeebde3c59ddd797a3f2da36c1005be authored by Thomas Gleixner on 22 March 2019, 16:09:59 UTC, committed by Thomas Gleixner on 22 March 2019, 16:09:59 UTC
Merge the forgotten cleanup patch for the new file, so the mess does not
propagate further.
2 parent s e898e69 + 266d63a
Raw File
uid16.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef LINUX_UID16_H
#define LINUX_UID16_H

long __sys_setuid(uid_t uid);
long __sys_setgid(gid_t gid);
long __sys_setreuid(uid_t ruid, uid_t euid);
long __sys_setregid(gid_t rgid, gid_t egid);
long __sys_setresuid(uid_t ruid, uid_t euid, uid_t suid);
long __sys_setresgid(gid_t rgid, gid_t egid, gid_t sgid);
long __sys_setfsuid(uid_t uid);
long __sys_setfsgid(gid_t gid);

#endif /* LINUX_UID16_H */
back to top