:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / ntdll / dbg / brkpoint.c
1 /* $Id$
2  *
3  * COPYRIGHT:       See COPYING in the top level directory
4  * PROJECT:         ReactOS kernel
5  * FILE:            lib/ntdll/dbg/brkpoint.c
6  * PURPOSE:         Handles breakpoints
7  * PROGRAMMER:      Eric Kohl
8  * UPDATE HISTORY:
9  *                  Created 28/12/1999
10  */
11
12 /* INCLUDES *****************************************************************/
13
14 #include <ddk/ntddk.h>
15
16
17 /* FUNCTIONS *****************************************************************/
18
19 VOID STDCALL DbgBreakPoint(VOID)
20 {
21    __asm__("int $3\n\t");
22 }
23
24 VOID STDCALL DbgUserBreakPoint(VOID)
25 {
26    __asm__("int $3\n\t");
27 }
28
29 /* EOF */