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 / alias3.lh < prev    next >
Text File  |  1997-09-04  |  438b  |  28 lines

  1. /* Output from LCLint 2.3h */
  2. # include "bool.h"
  3.  
  4.  
  5. # ifndef EXPOSED_TYPE_st
  6. typedef struct {
  7.     int a;
  8.     int *b;
  9.     } st;
  10. # endif
  11.  
  12.  
  13. # ifndef EXPOSED_TYPE_ut
  14. typedef union {
  15.     int a;
  16.     st s;
  17.     st *t;
  18.     int **c;
  19.     } ut;
  20. # endif
  21.  
  22. extern st  gst;
  23. extern ut  *gu;
  24. extern int f (int  /* ia */[], st  /* s1 */, ut * /* u1 */);
  25. extern void model (int  /* ia */[]);
  26. extern void modst (st  /* s1 */);
  27. extern void modu (ut * /* u */);
  28.