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 / csyntax2.c < prev    next >
Text File  |  1997-09-03  |  217b  |  18 lines

  1. typedef int mapping;
  2. typedef int mappair;
  3.  
  4. int smalloc();
  5.  
  6. mapping *
  7. mapping_create (void)
  8. {
  9.   mapping **t;
  10.   int x;
  11.  
  12.   t = (mapping **) smalloc (sizeof (mapping *));
  13.   x = sizeof(t);
  14.   x = sizeof *t;
  15.   return *t;
  16. }
  17.  
  18.