Initial version of donated sources by Avertec, 3.4p5.
[tas-yagle.git] / distrib / sources / tas / tut / txtarea.y
1 /******************************************************************************/
2 /* */
3 /* Chaine de CAO & VLSI AVERTEC */
4 /* */
5 /* Produit : LIB Version 1.00 */
6 /* Fichier : lib.y */
7 /* */
8 /* (c) copyright 2000 AVERTEC */
9 /* Tous droits reserves */
10 /* */
11 /* Auteur(s) : Gilles Augustins */
12 /* */
13 /******************************************************************************/
14
15 %{
16 #include "tut_parse.h"
17
18 /******************************************************************************/
19 /* private */
20 /******************************************************************************/
21
22 /******************************************************************************/
23 /* function declarations */
24 /******************************************************************************/
25
26 int yyerror();
27 int yylex();
28
29 %}
30
31 %union {
32 char *text ;
33 float real ;
34 } ;
35
36
37 %start lib_file
38
39 %%
40
41 lib_file : empty
42 ;
43
44 empty : /* empty */
45 ;
46
47 %%
48
49 int yyerror ()
50 {
51 return 0;
52 }
53