files structure reorganization, compilation BROKEN. compilation will be fixed soon.

This commit is contained in:
Pawel Kolodziejski
2008-01-26 09:18:08 +00:00
parent d29094a775
commit 08762f496d
173 changed files with 0 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#include <stdarg.h>
#include "tinygl/zgl.h"
void gl_fatal_error(char *format, ...) {
va_list ap;
va_start(ap, format);
fprintf(stderr, "TinyGL: fatal error: ");
vfprintf(stderr, format,ap);
fprintf(stderr, "\n");
exit(1);
va_end(ap);
}