Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / aklog / add_etbl.c
CommitLineData
805e021f
CE
1#include <afsconfig.h>
2#ifndef HAVE_ADD_TO_ERROR_TABLE
3#include <afs/stds.h>
4#include <afs/com_err.h>
5
6/* #define error_table error_table_compat */
7#include <afs/error_table.h>
8/* #undef error_table */
9
10#ifndef HAVE_ADD_ERROR_TABLE
11void add_error_table (const struct error_table *);
12#endif /* !HAVE_ADD_ERROR_TABLE */
13
14void
15add_to_error_table(struct et_list *new_table)
16{
17 add_error_table((struct error_table *) new_table->table);
18}
19#endif /* HAVE_ADD_TO_ERROR_TABLE */