2013-05-20 13:16:08 +08:00
|
|
|
#ifndef _EFUNC_H_
|
|
|
|
#define _EFUNC_H_
|
|
|
|
|
2013-05-19 17:36:24 +08:00
|
|
|
/* efunc.h
|
2005-05-31 08:50:56 -07:00
|
|
|
*
|
2013-05-19 17:36:24 +08:00
|
|
|
* Function declarations and names.
|
2005-05-31 08:50:56 -07:00
|
|
|
*
|
2013-05-19 17:36:24 +08: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 13:20:25 -03:00
|
|
|
* extern function list and the name binding table.
|
2005-05-31 08:50:56 -07:00
|
|
|
*
|
2013-05-19 17:36:24 +08:00
|
|
|
* modified by Petri Kutvonen
|
2005-05-31 08:50:56 -07:00
|
|
|
*/
|
|
|
|
|
2010-08-26 13:20:25 -03:00
|
|
|
/* External function declarations. */
|
2005-05-31 08:50:56 -07:00
|
|
|
|
2013-05-25 11:57:27 +08:00
|
|
|
#if BSD | SVR4
|
2005-09-30 22:52:45 -07:00
|
|
|
/* lock.c */
|
2013-05-20 13:16:08 +08:00
|
|
|
#include "lock.h"
|
2013-05-25 11:57:27 +08:00
|
|
|
#endif
|
2013-05-20 13:16:08 +08:00
|
|
|
|
|
|
|
#endif
|