home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 1.ddi / WINLBSRC.ZIP / WEP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  532 b   |  23 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - wep.c
  3.  *
  4.  * function(s)
  5.  *        __WEP - default DLL cleanup function, called if
  6.  *                user program doesn't define one
  7.  *-----------------------------------------------------------------------*/
  8.  
  9. /*
  10.  *      C/C++ Run Time Library - Version 5.0
  11.  *
  12.  *      Copyright (c) 1987, 1992 by Borland International
  13.  *      All Rights Reserved.
  14.  *
  15.  */
  16.  
  17. #pragma argsused
  18.  
  19. int far pascal __WEP( int i )
  20. {
  21.     return 1;
  22. }
  23.