now introducing the POSIX+ client DLL! (my first check-in, hope I don't f*** up somet...
[reactos.git] / posix / lib / psxdll / stdlib / abort.c
1 /* $Id:
2 */
3 /*
4 * COPYRIGHT: See COPYING in the top level directory
5 * PROJECT: ReactOS system libraries
6 * FILE: subsys/psx/lib/psxdll/stdlib/abort.c
7 * PURPOSE: Generate an abnormal process abort
8 * PROGRAMMER: KJK::Hyperion <noog@libero.it>
9 * UPDATE HISTORY:
10 * 15/02/2002: Created
11 */
12
13 #include <stdlib.h>
14 #include <signal.h>
15
16 void abort(void)
17 {
18 raise(SIGABRT);
19 }
20
21 /* EOF */
22