uemacs/lock.h

16 lines
190 B
C
Raw Normal View History

2013-05-25 03:57:27 +00:00
#ifndef _LOCK_H_
#define _LOCK_H_
#include "estruct.h"
2013-05-25 03:57:27 +00:00
#if BSD | SVR4
int lockchk( char *fname) ;
int lockrel( void) ;
int lock( char *fname) ;
int unlock( char *fname) ;
2013-05-25 03:57:27 +00:00
#endif
#endif