source: git/Singular/stype.h @ 42c397

fieker-DuValspielwiese
Last change on this file since 42c397 was a3f0fea, checked in by Reimer Behrends <behrends@…>, 5 years ago
Modify variable declarions for pSingular.
  • Property mode set to 100644
File size: 420 bytes
RevLine 
[0e1846]1#ifndef STYPE_H
2#define STYPE_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/*
7* ABSTRACT: flex/bison interface
8*/
[f6b5f0]9
[a4b31c]10#include "kernel/structs.h"
11#include "Singular/subexpr.h"
[0e1846]12
13typedef union
14{
15  int       i;
16  char    * name;
17  sleftv    lv;
18} MYYSTYPE;
19#define YYSTYPE MYYSTYPE
[a3f0fea]20EXTERN_VAR YYSTYPE  yylval;
[0e1846]21
22int yylex(MYYSTYPE *l);
23
24#endif
Note: See TracBrowser for help on using the repository browser.