summaryrefslogtreecommitdiff
path: root/logs.h
blob: f36695d982827c9d4d56c2f48085c718d61a4a1e (plain)
1
2
3
4
5
6
7
8
9
#ifndef LOGS_H
#define LOGS_H

#include <stdarg.h>

__attribute__((format(printf, 1, 2)))
void _log(const char *fmt, ...);

#endif /* LOGS_H */