home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Bison.sit.hqx / Bison / Source / gram.c < prev    next >
Text File  |  1992-08-21  |  2KB  |  66 lines

  1. /***********************************************************
  2.  *
  3.  * Macintosh/MPW version of GNU Bison 1.18
  4.  * Please read the README_MPW file for more information
  5.  *
  6.  ***********************************************************/
  7.  
  8. /* Allocate input grammar variables for bison,
  9.    Copyright (C) 1984, 1986, 1989 Free Software Foundation, Inc.
  10.  
  11. This file is part of Bison, the GNU Compiler Compiler.
  12.  
  13. Bison is free software; you can redistribute it and/or modify
  14. it under the terms of the GNU General Public License as published by
  15. the Free Software Foundation; either version 2, or (at your option)
  16. any later version.
  17.  
  18. Bison is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. GNU General Public License for more details.
  22.  
  23. You should have received a copy of the GNU General Public License
  24. along with Bison; see the file COPYING.  If not, write to
  25. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  26.  
  27.  
  28. /* comments for these variables are in gram.h  */
  29.  
  30. int nitems;
  31. int nrules;
  32. int nsyms;
  33. int ntokens;
  34. int nvars;
  35.  
  36. short *ritem;
  37. short *rlhs;
  38. short *rrhs;
  39. short *rprec;
  40. short *rprecsym;
  41. short *sprec;
  42. short *rassoc;
  43. short *sassoc;
  44. short *token_translations;
  45. short *rline;
  46.  
  47. int start_symbol;
  48.  
  49. int translations;
  50.  
  51. int max_user_token_number;
  52.  
  53. int semantic_parser;
  54.  
  55. int pure_parser;
  56.  
  57. int error_token_number;
  58.  
  59. /* This is to avoid linker problems which occur on VMS when using GCC,
  60.    when the file in question contains data definitions only.  */
  61.  
  62. void
  63. dummy()
  64. {
  65. }
  66.