ARGSUSED*/
| 30 | |
| 31 | /*ARGSUSED*/ |
| 32 | void |
| 33 | early_init(int argc USED_FOR_CRASHREPORT, char *argv[] USED_FOR_CRASHREPORT) |
| 34 | { |
| 35 | program_state_init(); |
| 36 | #ifdef CRASHREPORT |
| 37 | /* Do this as early as possible, but let ports do other things first. */ |
| 38 | crashreport_init(argc, argv); |
| 39 | #endif |
| 40 | decl_globals_init(); |
| 41 | objects_globals_init(); |
| 42 | monst_globals_init(); |
| 43 | sys_early_init(); |
| 44 | runtime_info_init(); |
| 45 | } |
| 46 | |
| 47 | staticfn void |
| 48 | moveloop_preamble(boolean resuming) |
no test coverage detected