home *** CD-ROM | disk | FTP | other *** search
/ Frostbyte's 1980s DOS Shareware Collection / floppyshareware.zip / floppyshareware / VORX / CC68A.ARC / CGLBDEC.H < prev    next >
C/C++ Source or Header  |  1988-12-06  |  1KB  |  40 lines

  1.  /*
  2.   * 68000 C compiler 
  3.   *
  4.   * Copyright 1984, 1985, 1986 Matthew Brandt. all commercial rights reserved. 
  5.   *
  6.   * This compiler is intended as an instructive tool for personal use. Any use
  7.   * for profit without the written consent of the author is prohibited. 
  8.   *
  9.   * This compiler may be distributed freely for non-commercial use as long as
  10.   * this notice stays intact. Please forward any enhancements or questions
  11.   * to: 
  12.   *
  13.   * Matthew Brandt Box 920337 Norcross, Ga 30092 
  14.   */
  15.  
  16. /*      global declarations     */
  17.  
  18. extern FILE *input, *list, *output;
  19.  
  20. extern int lineno;
  21. extern int nextlabel;
  22. extern int lastch;
  23. extern int lastst;
  24. extern char lastid[20];
  25. extern char laststr[MAX_STLP1];
  26. extern long ival;
  27. extern double rval;
  28.  
  29. extern TABLE gsyms, lsyms;
  30. extern SYM *lasthead;
  31. extern struct slit *strtab;
  32. extern int lc_static;
  33. extern int lc_auto;
  34. extern struct snode *bodyptr;    /* parse tree for function */
  35. extern int global_flag;
  36. extern TABLE defsyms;
  37. extern int save_mask;        /* register save mask */
  38.  
  39. #include                "proto.h"
  40.