We don't actually use the reset functions anywhere, and nothing really

provides them.
This commit is contained in:
Michael Brown
2007-07-03 20:34:51 +01:00
parent 5ce5e6d846
commit fae10a7ca1
10 changed files with 9 additions and 21 deletions

View File

@@ -23,15 +23,6 @@ void call_init_fns ( void ) {
}
}
void call_reset_fns ( void ) {
struct init_fn *init_fn;
for ( init_fn = init_fns; init_fn < init_fns_end ; init_fn++ ) {
if ( init_fn->reset )
init_fn->reset ();
}
}
void call_exit_fns ( void ) {
struct init_fn *init_fn;