goat3d

view src/log.h @ 29:3d669155709d

- switched the unix build to use the internal vmath/anim as well - fixed a memory corruption issue which was caused by including the system-wide installed version of the anim.h header file - started the ass2goat assimp->goat3d converter
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 29 Sep 2013 21:53:03 +0300
parents
children 498ca7ac7047
line source
1 #ifndef LOG_H_
2 #define LOG_H_
4 enum { LOG_ERROR, LOG_INFO };
6 void logmsg(int prio, const char *fmt, ...);
8 #endif // LOG_H_