revert of mass delete of the posix subsystem. perhaps there is hope for it yet.

svn path=/trunk/; revision=3674
This commit is contained in:
Rex Jolliff 2002-10-29 04:45:58 +00:00
parent c29a543da5
commit 385fdfdfeb
166 changed files with 20265 additions and 0 deletions

View file

@ -0,0 +1,22 @@
/* $Id: abort.c,v 1.4 2002/10/29 04:45:41 rex Exp $
*/
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS POSIX+ Subsystem
* FILE: subsys/psx/lib/psxdll/stdlib/abort.c
* PURPOSE: Generate an abnormal process abort
* PROGRAMMER: KJK::Hyperion <noog@libero.it>
* UPDATE HISTORY:
* 15/02/2002: Created
*/
#include <stdlib.h>
#include <signal.h>
void abort(void)
{
raise(SIGABRT);
}
/* EOF */