Last change
on this file since 3b21c96 was d9e4d83, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago |
formatting, add extern C for yylex declaration because of C++ compile, add -Wno-yacc to AM_YFLAGS
|
-
Property mode
set to
100644
|
File size:
881 bytes
|
Line | |
---|
1 | // -*- Mode: C++ -*-
|
---|
2 | //
|
---|
3 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
4 | //
|
---|
5 | // The contents of this file are covered under the licence agreement in the
|
---|
6 | // file "LICENCE" distributed with Cforall.
|
---|
7 | //
|
---|
8 | // parse.h - Various declarations that are needed so that the generated parser
|
---|
9 | // and lexer compile with C++, and to share information between the
|
---|
10 | // parser, lexer, and driver program
|
---|
11 | //
|
---|
12 | // Author : Richard C. Bilson and Rodolfo G. Esteves
|
---|
13 | // Created On : Sun Dec 16 15:00:49 2001
|
---|
14 | // Last Modified By : Peter A. Buhr
|
---|
15 | // Last Modified On : Tue Jan 26 23:05:34 2021
|
---|
16 | // Update Count : 176
|
---|
17 | //
|
---|
18 |
|
---|
19 | #pragma once
|
---|
20 |
|
---|
21 | extern "C" int yylex();
|
---|
22 |
|
---|
23 | #include <string>
|
---|
24 | #include <list>
|
---|
25 | #include "token.h"
|
---|
26 |
|
---|
27 | // Local Variables: //
|
---|
28 | // mode: c++ //
|
---|
29 | // tab-width: 4 //
|
---|
30 | // compile-command: "make install" //
|
---|
31 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.