home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmiSoft / Dev / C / Tinygl.lha / TinyGL / src / error.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-15  |  243 b   |  17 lines

  1. #include <stdarg.h>
  2. #include "zgl.h"
  3.  
  4. void gl_fatal_error(char *format, ...)
  5. {
  6.   va_list ap;
  7.  
  8.   va_start(ap,format);
  9.  
  10.   fprintf(stderr,"TinyGL: fatal error: ");
  11.   vfprintf(stderr,format,ap);
  12.   fprintf(stderr,"\n");
  13.   exit(1);
  14.  
  15.   va_end(ap);
  16. }
  17.