start_kernel.h 295 B

12345678910111213
  1. #ifndef _LINUX_START_KERNEL_H
  2. #define _LINUX_START_KERNEL_H
  3. #include <linux/linkage.h>
  4. #include <linux/init.h>
  5. /* Define the prototype for start_kernel here, rather than cluttering
  6. up something else. */
  7. extern asmlinkage void __init start_kernel(void);
  8. #endif /* _LINUX_START_KERNEL_H */