home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / adaptor / src / include / dataflow.h < prev    next >
C/C++ Source or Header  |  1993-07-08  |  502b  |  30 lines

  1. # ifndef yyDataFlow
  2. # define yyDataFlow
  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 "DepGraph.h"
  16.  
  17. # line 5 "DataFlow.puma"
  18.  
  19. #include <stdio.h>
  20. extern FILE *DepFile;
  21.  
  22.  
  23. extern void DataFlow ARGS((tTree t));
  24. extern void OutDependences ARGS((tTree t));
  25.  
  26. extern void BeginDataFlow ();
  27. extern void CloseDataFlow ();
  28.  
  29. # endif
  30.