kolibrios-fun/contrib/media/updf/include/log.h
Serhii Sakhno cd35d38ad2 updf: restore menuetlibc version
git-svn-id: svn://kolibrios.org@8429 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-12-16 18:41:33 +00:00

38 lines
546 B
C

#ifndef __log_h__
#define __log_h__
#ifdef YACAS_LOGGING // DEBUG
#include <stdarg.h>
#include <stdio.h>
#endif
inline void LogPrintf(char* str,...)
{
#ifdef YACAS_LOGGING // DEBUG
va_list arg;
char buf[256];
va_start (arg, str);
vsprintf (buf, str, arg);
va_end (arg);
printf(buf);
#endif
}
inline void LogErrorPrintf(char* str,...)
{
#ifdef YACAS_LOGGING // DEBUG
printf("ERROR: ");
va_list arg;
char buf[256];
va_start (arg, str);
vsprintf (buf, str, arg);
va_end (arg);
printf(buf);
exit(0);
#endif
}
#endif