mirror of
https://github.com/simh/simh.git
synced 2026-04-17 16:44:15 +00:00
3B2: Remove unused code, move static declarations
This change cleans up warnings issued when compiled with -Wall. - Removed unused functions and variables. - Moved static declarations out of headers and into source files - Added braces around initialization where suggested.
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
|
||||
#define CRC_POLYNOMIAL 0xEDB88320
|
||||
|
||||
CIO_STATE cio[CIO_SLOTS] = { 0 };
|
||||
CIO_STATE cio[CIO_SLOTS] = {{0}};
|
||||
|
||||
struct iolink iotable[] = {
|
||||
{ MMUBASE, MMUBASE+MMUSIZE, &mmu_read, &mmu_write },
|
||||
|
||||
Reference in New Issue
Block a user