1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-07-08 14:14:15 -04:00
uemacs/lock.h

17 lines
266 B
C
Raw Normal View History

2013-05-24 23:57:27 -04:00
#ifndef _LOCK_H_
#define _LOCK_H_
#ifndef _ESTRUCT_H_
#error uEmacs compilation settings needs to be done!
#endif
2013-05-24 23:57:27 -04:00
#if BSD | SVR4
int lockchk( const char *fname) ;
int lockrel( void) ;
int lock( const char *fname) ;
int unlock( const char *fname) ;
2013-05-24 23:57:27 -04:00
#endif
#endif