Unused variable cleanup
[openafs.git] / src / aklog / add_etbl.c
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
11 void add_error_table (const struct error_table *);
12 #endif /* !HAVE_ADD_ERROR_TABLE */
13
14 void
15 add_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 */