mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 19:37:18 -05:00
23 lines
434 B
C
23 lines
434 B
C
#ifndef _EFUNC_H_
|
|
#define _EFUNC_H_
|
|
|
|
/* efunc.h
|
|
*
|
|
* Function declarations and names.
|
|
*
|
|
* 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.
|
|
*
|
|
* modified by Petri Kutvonen
|
|
*/
|
|
|
|
/* External function declarations. */
|
|
|
|
#if BSD | SVR4
|
|
/* lock.c */
|
|
#include "lock.h"
|
|
#endif
|
|
|
|
#endif
|