mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	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>
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			20 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 */
 |