1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-06-03 02:50:42 +00:00
uemacs/efunc.h

43 lines
678 B
C
Raw Normal View History

#ifndef _EFUNC_H_
#define _EFUNC_H_
2013-05-19 09:36:24 +00:00
/* efunc.h
*
2013-05-19 09:36:24 +00:00
* Function declarations and names.
*
2013-05-19 09:36:24 +00: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
* extern function list and the name binding table.
*
2013-05-19 09:36:24 +00:00
* modified by Petri Kutvonen
*/
/* External function declarations. */
/* basic.c */
2013-05-19 00:13:48 +00:00
#include "basic.h"
/* display.c */
#include "display.h"
/* posix.c */
#include "termio.h"
/* input.c */
#include "input.h"
/* eval.c */
#include "eval.h"
2013-05-25 03:57:27 +00:00
#if BSD | SVR4
/* lock.c */
#include "lock.h"
2013-05-25 03:57:27 +00:00
#if (FILOCK && BSD) || SVR4
/* pklock.c */
#include "pklock.h"
2013-05-25 03:57:27 +00:00
#endif
#endif
#endif