1
0
mirror of https://github.com/rfivet/uemacs.git synced 2024-09-29 00:35:55 -04:00
uemacs/efunc.h

34 lines
574 B
C
Raw Normal View History

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