mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-16 09:36:29 -05:00
Renaud Fivet
b4d69118f5
Finish tagging BBINDABLE functions. Modify forward-character to handle combined Unicode. Bump up version number and set default program name as 'ue'.
14 lines
216 B
C
14 lines
216 B
C
/* pklock.h -- */
|
|
#ifndef _PKLOCK_H_
|
|
#define _PKLOCK_H_
|
|
|
|
#include "estruct.h"
|
|
|
|
#if (FILOCK && BSD) || SVR4
|
|
char *dolock( const char *fname) ;
|
|
char *undolock( const char *fname) ;
|
|
#endif
|
|
|
|
#endif
|
|
/* end of pklock.h */
|