home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / adaptor / src / include / makestaa.h < prev    next >
C/C++ Source or Header  |  1994-01-02  |  613b  |  26 lines

  1. # ifndef yyMakeStaticArrays
  2. # define yyMakeStaticArrays
  3.  
  4. # if defined __STDC__ | defined __cplusplus
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. # ifndef bool
  11. # define bool char
  12. # endif
  13.  
  14. # include "Tree.h"
  15. # include "Definiti.h"
  16.  
  17.  
  18. extern void MakeStatic ARGS((tTree t, tIdent unitname));
  19. extern tTree InsertStaticDecls ARGS((tIdent name, int rank, tTree type, tTree end_decls));
  20. extern tTree MakeInitialStatic ARGS((tIdent name, tTree lb, tTree ub, int overlap));
  21.  
  22. extern void BeginMakeStaticArrays ();
  23. extern void CloseMakeStaticArrays ();
  24.  
  25. # endif
  26.