source: git/Singular/stype.h @ 33b509

spielwiese
Last change on this file since 33b509 was 6ce030f, checked in by Oleksandr Motsak <motsak@…>, 12 years ago
removal of the $Id$ svn tag from everywhere NOTE: the git SHA1 may be used instead (only on special places) NOTE: the libraries Singular/LIB/*.lib still contain the marker due to our current use of svn
  • 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 <kernel/structs.h>
11#include <Singular/subexpr.h>
12
13typedef union
14{
15  int       i;
16  char    * name;
17  sleftv    lv;
18} MYYSTYPE;
19#define YYSTYPE MYYSTYPE
20extern YYSTYPE  yylval;
21
22int yylex(MYYSTYPE *l);
23
24#endif
Note: See TracBrowser for help on using the repository browser.