Loading [MathJax]/extensions/tex2jax.js
Mesh Oriented datABase  (version 5.5.1)
An array-based unstructured mesh library
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
errmem.c
Go to the documentation of this file.
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <stdarg.h> 4 #include "moab/FindPtFuncs.h" 5  6 void fail( const char* fmt, ... ){ 8  va_list ap; 9  va_start( ap, fmt ); 10  vfprintf( stderr, fmt, ap ); 11  va_end( ap ); 12  exit( 1 ); 13 }