source: git/dyn_modules/modgen/stype.h @ 3c473c

spielwiese
Last change on this file since 3c473c was 3c473c, checked in by Kai Krüger <krueger@…>, 14 years ago
rename directory modules to dyn_modules anticipating "modules" directory for cmake. git-svn-id: file:///usr/local/Singular/svn/trunk@13033 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 423 bytes
Line 
1#ifndef STYPE_H
2#define STYPE_H
3/****************************************
4*  Computer Algebra System SINGULAR     *
5****************************************/
6/* $Id$ */
7/*
8* ABSTRACT: flex/bison interface
9*/
10
11#include "modgen.h"
12
13typedef union
14{
15  int       i;
16  char    * name;
17  moddefv    lv;
18  stringdef sv;
19  paramdef  tp;
20} MYYSTYPE;
21#define YYSTYPE MYYSTYPE
22extern YYSTYPE  yylval;
23
24int yylex(MYYSTYPE *l);
25
26
27#endif
Note: See TracBrowser for help on using the repository browser.