mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-19 19:15:55 -05:00
16 lines
208 B
C
16 lines
208 B
C
#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
|