diff --git a/edef.h b/edef.h index 8731165..796e66e 100644 --- a/edef.h +++ b/edef.h @@ -10,7 +10,6 @@ #ifndef EDEF_H_ #define EDEF_H_ - #include #include diff --git a/efunc.h b/efunc.h index 050f4a8..1dcf83b 100644 --- a/efunc.h +++ b/efunc.h @@ -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); diff --git a/names.c b/names.c index 280f380..0700599 100644 --- a/names.c +++ b/names.c @@ -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} }; -