1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-29 13:05:35 +00:00
uemacs/lock.h

19 lines
245 B
C

/* lock.h -- */
#ifndef _LOCK_H_
#define _LOCK_H_
#include "estruct.h"
#if BSD | SVR4
int lockchk( const char *fname) ;
int lockrel( void) ;
int lock( const char *fname) ;
int unlock( const char *fname) ;
#endif
#endif
/* end of lock.h */