goat3d

diff src/log.h @ 16:cb6c1a945a11

goat3d is starting to become functional inch by inch
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Sep 2013 14:16:09 +0300
parents
children 498ca7ac7047
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/log.h	Thu Sep 26 14:16:09 2013 +0300
     1.3 @@ -0,0 +1,8 @@
     1.4 +#ifndef LOG_H_
     1.5 +#define LOG_H_
     1.6 +
     1.7 +enum { LOG_ERROR, LOG_INFO };
     1.8 +
     1.9 +void logmsg(int prio, const char *fmt, ...);
    1.10 +
    1.11 +#endif	// LOG_H_