home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1993, 1994 Marc Parmet.
- * This file is part of the Macintosh port of GNU Emacs.
- *
- * GNU Emacs is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
- #include "assert.h"
- #include "stdio.h"
-
- int
- __assert(char *expr, char *file, int line)
- {
- fprintf(stderr, "Assertion failed: %s, file %s, line %d\n", expr, file, line);
- abort();
- }
-