summaryrefslogtreecommitdiff
path: root/platform/wavelet3d/host_sw/log.h
blob: 139634222188d4f7fb2fedbe466788a922321cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef LOG_H
#define LOG_H

#include <stdio.h>

#ifdef MOD_NAME
	#define log(fmt, ...) printf(MOD_NAME ": " fmt "\n", ##__VA_ARGS__)
#else
	#define log(fmt, ...) printf(fmt "\n", ##__VA_ARGS__)
#endif

#endif