blob: d8aaaaf02284c95365dad8300f8de784d0cacb73 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef GL_H
#define GL_H
#include "cgen.h"
#include "lex.h"
#include "prv.h"
#include "storage.h"
int gl(const struct lex *l, struct prv *p);
int gl_cgen(const struct storage *gl, struct cgen *c);
#endif
|