Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at be2d3ecedd9911fbfd7e55cc9ceac5f8b79ae4cf 15 lines 415 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _LINUX_START_KERNEL_H 3#define _LINUX_START_KERNEL_H 4 5#include <linux/linkage.h> 6#include <linux/init.h> 7 8/* Define the prototype for start_kernel here, rather than cluttering 9 up something else. */ 10 11extern asmlinkage void __init start_kernel(void); 12extern void __init arch_call_rest_init(void); 13extern void __ref rest_init(void); 14 15#endif /* _LINUX_START_KERNEL_H */