log.h 201 Bytes
Newer Older
Cedric Roux's avatar
Cedric Roux committed
1 2 3 4 5 6 7 8 9 10
#ifndef _LOG_H_
#define _LOG_H_

#include <stdio.h>

#define LOG_E(x, ...) printf(__VA_ARGS__)
#define LOG_D(x, ...) printf(__VA_ARGS__)
#define LOG_W(x, ...) printf(__VA_ARGS__)

#endif /* _LOG_H_ */