diff --git a/reactos/ntoskrnl/ke/i386/idt.c b/reactos/ntoskrnl/ke/i386/idt.c deleted file mode 100644 index 1a9c86aa94c..00000000000 --- a/reactos/ntoskrnl/ke/i386/idt.c +++ /dev/null @@ -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 -#define NDEBUG -#include - -/* GLOBALS *******************************************************************/ - -IDT_DESCRIPTOR KiIdt[256]; - -#include - -struct -{ - USHORT Length; - ULONG Base; -} KiIdtDescriptor = {256 * 8, (ULONG)KiIdt}; - -#include - -/* FUNCTIONS *****************************************************************/ - -