1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <uapi/linux/sem.h>
6 #include <linux/sem_types.h>
12 extern int copy_semundo(unsigned long clone_flags, struct task_struct *tsk);
13 extern void exit_sem(struct task_struct *tsk);
17 static inline int copy_semundo(unsigned long clone_flags, struct task_struct *tsk)
22 static inline void exit_sem(struct task_struct *tsk)
28 #endif /* _LINUX_SEM_H */