home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / LOCK.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  278 b   |  16 lines

  1. /* lock & unlock - control access to file records
  2.  
  3.     Copyright (c) 1984 by JMI Software Consultants, Inc.
  4. */
  5. #include "acom.h"
  6.  
  7. INT LOCK()
  8.     {
  9.     return (0);        /* record locking not supported */
  10.     }
  11.  
  12. INT UNLOCK()
  13.     {
  14.     return (0);        /* record locking not supported */
  15.     }
  16.