1: /*
2: * @(#)parser.h 3.5 1/1/94
3: */
4:
5: /*
6: * Copyright (c) 1983 Regents of the University of California,
7: * All rights reserved. Redistribution permitted subject to
8: * the terms of the Berkeley Software License Agreement.
9: */
10:
11: #include <stdio.h>
12: #include "value.h"
13: #include "context.h"
14: #include "token.h"
15: #include "string.h"
16:
17: #define p_erred() (cx.x_erred)
18: #define p_synerred() (cx.x_synerred)
19: #define p_clearerr() (cx.x_erred = cx.x_synerred = 0)
20: #define p_abort() (cx.x_abort)
Defined macros
Usage of this include