1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

lock only for BSD or SVR4

This commit is contained in:
2013-05-25 11:57:27 +08:00
parent 548973517b
commit 255cab18b3
3 changed files with 20 additions and 0 deletions

8
lock.h
View File

@@ -1,6 +1,14 @@
#ifndef _LOCK_H_
#define _LOCK_H_
#if BSD | SVR4
int lockchk( char *fname) ;
int lockrel( void) ;
int lock( char *fname) ;
int unlock( char *fname) ;
void lckerror( char *errstr) ;
#endif
#endif