|
MOAB: Mesh Oriented datABase
(version 5.4.1)
|
Include dependency graph for errmem.c:Go to the source code of this file.
Functions | |
| void | fail (const char *fmt,...) |
| void fail | ( | const char * | fmt, |
| ... | |||
| ) |
Definition at line 6 of file errmem.c.
Referenced by main(), ZoltanPartitioner::mbGlobalSuccess(), runner_run_tests(), scalloc(), smalloc(), and srealloc().
{
va_list ap;
va_start( ap, fmt );
vfprintf( stderr, fmt, ap );
va_end( ap );
exit( 1 );
}