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.
15 lines
315 B
15 lines
315 B
17 years ago
|
/*
|
||
|
* linux/arch/i386/kernel/head32.c -- prepare to run common code
|
||
|
*
|
||
|
* Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
|
||
|
* Copyright (C) 2007 Eric Biederman <ebiederm@xmission.com>
|
||
|
*/
|
||
|
|
||
|
#include <linux/init.h>
|
||
|
#include <linux/start_kernel.h>
|
||
|
|
||
|
void __init i386_start_kernel(void)
|
||
|
{
|
||
|
start_kernel();
|
||
|
}
|