home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / WINLBSRC.ZIP / ABORT.C next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  663 b   |  33 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - abort.c
  3.  *
  4.  * function(s)
  5.  *        abort - raise the SIGABRT signal
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*
  9.  *      C/C++ Run Time Library - Version 5.0
  10.  *
  11.  *      Copyright (c) 1991, 1992 by Borland International
  12.  *      All Rights Reserved.
  13.  *
  14.  */
  15.  
  16. #if !defined( __STDLIB_H )
  17. #include <stdlib.h>
  18. #endif  // __STDLIB_H
  19.  
  20. #if !defined( __SIGNAL_H )
  21. #include <signal.h>
  22. #endif  // __SIGNAL_H
  23.  
  24. #if !defined( ___WIN_H )
  25. #include <_win.h>
  26. #endif  // ___WIN_H
  27.  
  28. void abort( void )
  29. {
  30.     raise( SIGABRT );
  31. }
  32.  
  33.