source: git/old_modgen/modgen/stype.h @ a3f0fea

spielwiese
Last change on this file since a3f0fea was a3f0fea, checked in by Reimer Behrends <behrends@…>, 5 years ago
Modify variable declarions for pSingular.
  • Property mode set to 100644
File size: 416 bytes
Line 
1#ifndef STYPE_H
2#define STYPE_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: flex/bison interface
8*/
9
10#include "modgen.h"
11
12typedef union
13{
14  int       i;
15  char    * name;
16  moddefv    lv;
17  stringdef sv;
18  paramdef  tp;
19} MYYSTYPE;
20#define YYSTYPE MYYSTYPE
21EXTERN_VAR YYSTYPE  yylval;
22
23int yylex(MYYSTYPE *l);
24
25
26#endif
Note: See TracBrowser for help on using the repository browser.