Change
struct error_table { char const * const * msgs; long base; int n_msgs; }; struct et_list { struct et_list *next; struct error_table *table; }; extern struct et_list *_et_list; to be binary compatible with MIT compile_et git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4436 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -45,11 +45,15 @@ struct error_table {
|
||||
char const * const * msgs;
|
||||
long base;
|
||||
int n_msgs;
|
||||
struct error_table *next;
|
||||
};
|
||||
struct et_list {
|
||||
struct et_list *next;
|
||||
struct error_table *table;
|
||||
};
|
||||
extern struct et_list *_et_list;
|
||||
|
||||
const char *com_right(struct error_table *list, long code);
|
||||
void initialize_error_table_r(struct error_table**, const char**, int, long);
|
||||
void free_error_table(struct error_table*);
|
||||
const char *com_right(struct et_list *list, long code);
|
||||
void initialize_error_table_r(struct et_list **, const char **, int, long);
|
||||
void free_error_table(struct et_list *);
|
||||
|
||||
#endif /* __COM_RIGHT_H__ */
|
||||
|
Reference in New Issue
Block a user