1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-10 14:00:41 +00:00
uemacs/pklock.h

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 */