mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
847d3abc6a
Move relevant declarations to this header. This will address below -Wmissing-prototypes warnings: arch/um/os-Linux/elf_aux.c:26:13: warning: no previous prototype for ‘scan_elf_aux’ [-Wmissing-prototypes] arch/um/os-Linux/mem.c:213:13: warning: no previous prototype for ‘check_tmpexec’ [-Wmissing-prototypes] arch/um/os-Linux/skas/process.c:107:6: warning: no previous prototype for ‘wait_stub_done’ [-Wmissing-prototypes] Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com> Signed-off-by: Richard Weinberger <richard@nod.at>
21 lines
296 B
C
21 lines
296 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __UM_OS_LINUX_INTERNAL_H
|
|
#define __UM_OS_LINUX_INTERNAL_H
|
|
|
|
/*
|
|
* elf_aux.c
|
|
*/
|
|
void scan_elf_aux(char **envp);
|
|
|
|
/*
|
|
* mem.c
|
|
*/
|
|
void check_tmpexec(void);
|
|
|
|
/*
|
|
* skas/process.c
|
|
*/
|
|
void wait_stub_done(int pid);
|
|
|
|
#endif /* __UM_OS_LINUX_INTERNAL_H */
|