2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _EFUNC_H_
|
|
|
|
#define _EFUNC_H_
|
|
|
|
|
2013-05-19 05:36:24 -04:00
|
|
|
/* efunc.h
|
2005-05-31 11:50:56 -04:00
|
|
|
*
|
2013-05-19 05:36:24 -04:00
|
|
|
* Function declarations and names.
|
2005-05-31 11:50:56 -04:00
|
|
|
*
|
2013-05-19 05:36:24 -04:00
|
|
|
* This file list all the C code functions used and the names to use
|
|
|
|
* to bind keys to them. To add functions, declare it here in both the
|
2010-08-26 12:20:25 -04:00
|
|
|
* extern function list and the name binding table.
|
2005-05-31 11:50:56 -04:00
|
|
|
*
|
2013-05-19 05:36:24 -04:00
|
|
|
* modified by Petri Kutvonen
|
2005-05-31 11:50:56 -04:00
|
|
|
*/
|
|
|
|
|
2010-08-26 12:20:25 -04:00
|
|
|
/* External function declarations. */
|
2005-05-31 11:50:56 -04:00
|
|
|
|
2013-05-24 23:57:27 -04:00
|
|
|
#if BSD | SVR4
|
2005-10-01 01:52:45 -04:00
|
|
|
/* lock.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "lock.h"
|
2005-10-01 01:52:45 -04:00
|
|
|
|
2013-05-24 23:57:27 -04:00
|
|
|
#if (FILOCK && BSD) || SVR4
|
2005-10-01 03:56:15 -04:00
|
|
|
/* pklock.c */
|
2013-05-20 01:16:08 -04:00
|
|
|
#include "pklock.h"
|
2013-05-24 23:57:27 -04:00
|
|
|
#endif
|
|
|
|
#endif
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|