home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------*
- * filename - gexit.c
- *
- * function(s)
- * _graphexit - abort program (for graphics library)
- *-----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987,1988,1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
-
- #include <graphics.h>
- #include <process.h>
-
- /*-----------------------------------------------------------------------*
-
- Name _graphexit - abort program (for graphics library)
-
- Usage void far _graphexit(int status);
-
- Prototype in graphics.h
-
- Description This is the default version of "_graphexit". It merely
- calls "exit" with the specified exit status.
-
- *------------------------------------------------------------------------*/
- void far _graphexit(int status)
- {
- exit(status);
- }
-