#ifndef WARN_H #define WARN_H #include "lex.h" #include "print.h" #include "prv.h" struct warn { struct print p; }; int warn(const struct lex *l, struct prv *p); int warn_cgen(const struct warn *w, struct cgen *c); void warn_free(struct warn *w); #endif