blob: fba68208ae1e325e35f61b16e5bba732ac7a8d21 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef LISIBLE_PNG_LOG_H
#define LISIBLE_PNG_LOG_H
#include <stdio.h>
#define LOG0(fmt) fprintf(stderr, fmt "\n")
#define LOGN(fmt, ...) fprintf(stderr, fmt "\n", __VA_ARGS__)
#endif // LISIBLE_PNG_LOG_H
|