Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

headers_check fix: linux/elf-fdpic.h

fix the following 'make headers_check' warning:

usr/include/linux/elf-fdpic.h:62: extern's make no sense in userspace

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>

+2
+2
include/linux/elf-fdpic.h
··· 58 58 #define ELF_FDPIC_FLAG_PRESENT 0x80000000 /* T if this object is present */ 59 59 }; 60 60 61 + #ifdef __KERNEL__ 61 62 #ifdef CONFIG_MMU 62 63 extern void elf_fdpic_arch_lay_out_mm(struct elf_fdpic_params *exec_params, 63 64 struct elf_fdpic_params *interp_params, 64 65 unsigned long *start_stack, 65 66 unsigned long *start_brk); 66 67 #endif 68 + #endif /* __KERNEL__ */ 67 69 68 70 #endif /* _LINUX_ELF_FDPIC_H */