home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / repexpose.h < prev    next >
C/C++ Source or Header  |  1997-09-03  |  226b  |  21 lines

  1. # include "bool.h"
  2.  
  3. typedef struct _abst *abst;
  4.  
  5. typedef struct _immut
  6. {
  7.   char *name;
  8.   int val;
  9. } *immut;
  10.  
  11. struct _abst
  12. {
  13.   char *name;
  14.   int   val;
  15.   /*@dependent@*/ abst  parent;
  16.   immut im;
  17. } ;
  18.  
  19.  
  20. # include "repexpose.lh"
  21.