aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.h
blob: 9432ed1fce301954c073c54fb98d6f47247402e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _RUNES_UTIL_H
#define _RUNES_UTIL_H

#define UNUSED(x) ((void)x)

void runes_warn(const char *fmt, ...);
int sprintf_dup(char **out, const char *fmt, ...);

#endif