home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------------
- * filename - assert.c
- *
- * function(s)
- * __assertfail - prints error message and aborts
- *-----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987,1988,1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <assert.h>
-
- void __assertfail(char *msg, char *cond, char *file, int line)
- {
- fprintf(stderr, msg, cond, file, line);
- abort();
- }
-
-