From 6e4a29babf7bf387944a9267cf76747f78c37590 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Mon, 24 Sep 2001 10:19:58 +0000 Subject: [PATCH] Fix for compile error svn path=/trunk/; revision=2258 --- reactos/lib/crtdll/except/exhand2.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/reactos/lib/crtdll/except/exhand2.c b/reactos/lib/crtdll/except/exhand2.c index 886b7984f88..be66fb4116a 100644 --- a/reactos/lib/crtdll/except/exhand2.c +++ b/reactos/lib/crtdll/except/exhand2.c @@ -1,13 +1,5 @@ #include -typedef enum _EXCEPTION_DISPOSITION { - ExceptionContinueExecution, - ExceptionContinueSearch, - ExceptionNestedException, - ExceptionCollidedUnwind -} EXCEPTION_DISPOSITION; - - EXCEPTION_DISPOSITION _except_handler2( struct _EXCEPTION_RECORD *ExceptionRecord, @@ -15,5 +7,5 @@ void *Frame, struct _CONTEXT *ContextRecord, void *DispatcherContext) { - printf("excpetion handler\n"); + printf("exception handler\n"); }