mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-10 14:36:13 -05:00
16 lines
237 B
C
16 lines
237 B
C
#ifndef _PKLOCK_H_
|
|
#define _PKLOCK_H_
|
|
|
|
#ifndef _ESTRUCT_H_
|
|
#error uEmacs compilation settings needs to be done!
|
|
#endif
|
|
|
|
#if (FILOCK && BSD) || SVR4
|
|
|
|
char *dolock( const char *fname) ;
|
|
char *undolock( const char *fname) ;
|
|
|
|
#endif
|
|
|
|
#endif
|