mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-15 17:16:48 -05:00
14 lines
240 B
C
14 lines
240 B
C
/* pklock.h -- */
|
|
#ifndef _PKLOCK_H_
|
|
#define _PKLOCK_H_
|
|
|
|
#include "defines.h" /* FILOCK, BSD, SVR4 */
|
|
|
|
#if (FILOCK && BSD) || SVR4
|
|
char *dolock( const char *fname) ;
|
|
char *undolock( const char *fname) ;
|
|
#endif
|
|
|
|
#endif
|
|
/* end of pklock.h */
|