blob: 8a0df6dace899e080c89bce018f5ca961d1c8f17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef DIV_H
#define DIV_H
#include "lex.h"
#include "prv.h"
int div_fn(const struct lex *l, struct prv *p);
int div_im(const struct lex *l, struct prv *p);
int div_p(const struct lex *l, struct prv *p);
#endif
|