nanowasm/private_include/log.h

13 lines
151 B
C

#ifndef LOG_H
#define LOG_H
#include <stdio.h>
#ifdef ENABLE_LOG
#define LOG(...) fprintf(stderr, __VA_ARGS__)
#else
#define LOG(...)
#endif
#endif