- Delete deprecated file.

svn path=/trunk/; revision=20939
This commit is contained in:
Alex Ionescu 2006-01-17 17:29:23 +00:00
parent d8582ed67b
commit 1baa697ddf

View file

@ -1,33 +0,0 @@
/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/ke/i386/idt.c
* PURPOSE: IDT managment
*
* PROGRAMMERS: David Welch (welch@cwcom.net)
*/
/* INCLUDES *****************************************************************/
#include <ntoskrnl.h>
#define NDEBUG
#include <internal/debug.h>
/* GLOBALS *******************************************************************/
IDT_DESCRIPTOR KiIdt[256];
#include <pshpack1.h>
struct
{
USHORT Length;
ULONG Base;
} KiIdtDescriptor = {256 * 8, (ULONG)KiIdt};
#include <poppack.h>
/* FUNCTIONS *****************************************************************/