You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
295 B
12 lines
295 B
#ifndef _LINUX_START_KERNEL_H
|
|
#define _LINUX_START_KERNEL_H
|
|
|
|
#include <linux/linkage.h>
|
|
#include <linux/init.h>
|
|
|
|
/* Define the prototype for start_kernel here, rather than cluttering
|
|
up something else. */
|
|
|
|
extern asmlinkage void __init start_kernel(void);
|
|
|
|
#endif /* _LINUX_START_KERNEL_H */
|
|
|