uemacs/efunc.h: Get rid of a duplicated exported type called "names".

This type is already exported in edef.h

Signed-off-by: Thiago Farina <tfransosi@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Thiago Farina 2010-08-29 03:10:02 -03:00 committed by Linus Torvalds
parent 78f045749f
commit bd635515a6
3 changed files with 5 additions and 10 deletions

1
edef.h
View File

@ -10,7 +10,6 @@
#ifndef EDEF_H_
#define EDEF_H_
#include <stdlib.h>
#include <string.h>

View File

@ -372,9 +372,6 @@ extern int lock(char *fname);
extern int unlock(char *fname);
extern void lckerror(char *errstr);
/* names.c */
extern struct name_bind names[];
/* pklock.c */
extern char *dolock(char *fname);
extern char *undolock(char *fname);

11
names.c
View File

@ -1,8 +1,8 @@
/* Name to function binding table
This table gives the names of all the bindable functions
end their C function address. These are used for the bind-to-key
function.
/* Name to function binding table.
*
* This table gives the names of all the bindable functions
* end their C function address. These are used for the bind-to-key
* function.
*/
#include "estruct.h"
@ -221,4 +221,3 @@ struct name_bind names[] = {
{"", NULL}
};