taisei/src/taisei_err.h
laochailan e470236379 use glew and err.h replacement
some changes for compatibility and windows.
2011-06-26 16:10:13 +02:00

16 lines
447 B
C

/*
* This software is licensed under the terms of the MIT-License
* See COPYING for further information.
* ---
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
*/
/* replacement for standard err.h, some environments don't have it ... but i like it :/ */
#include <stdarg.h>
// void err(int eval, const char *fmt, ...);
void errx(int eval, const char *fmt, ...);
// void warn(const char *fmt, ...);
void warnx(const char *fmt, ...);