blob: 127caa78494bb7b4725c7d4c8c1f32acfebde523 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef ERRLOC_H
#define ERRLOC_H
#include "lex.h"
void errloc(const struct tk *tk, const char *fmt, ...);
void errcloc(const struct lex *l, const char *fmt, ...);
#endif
|