home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / devtools / os2tk21j / c / samples / animals / ldog.c__ / ldog.c
Encoding:
C/C++ Source or Header  |  1993-03-12  |  579 b   |  22 lines

  1. #ifndef lint
  2. static char *sccsid = "@(#)ldog.c 1.3 2/3/92 20:40:07 [2/3/92] (c)IBM Corp. 1992";
  3. #endif
  4.  
  5. /*
  6.  * Copyright (c) International Business Machines Corporation
  7.  *         1991, 1992
  8.  */
  9.  
  10. #define LittleDog_Class_Source
  11. #include "ldog.ih"
  12.  
  13. SOM_Scope void SOMLINK talk(LittleDog * somSelf)
  14. {
  15. /*  LittleDogData *somThis = LittleDogGetData(somSelf); */
  16.     LittleDogMethodDebug("LittleDog", "talk");
  17.     somPrintf("woof woof\n");
  18.     somPrintf("woof woof\n");
  19.     somSelf;                   /* Avoid unreferenced parameter compiler
  20.                     * warning for OS/2 compiler */
  21. }
  22.