summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/imagedev/flopdrv.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2012-09-15 21:47:30 +0000
committer Aaron Giles <aaron@aarongiles.com>2012-09-15 21:47:30 +0000
commitab97dc30efdd5cc1abf8c65b8ce29af364219167 (patch)
tree5ab46b3c21f6e0e4173a79a4151e019b3f2dc17e /src/emu/imagedev/flopdrv.c
parentd1da89cc7817315f05269205a3f56d36ebba170b (diff)
First pass at modernizing struct definitions.
Diffstat (limited to 'src/emu/imagedev/flopdrv.c')
-rw-r--r--src/emu/imagedev/flopdrv.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/imagedev/flopdrv.c b/src/emu/imagedev/flopdrv.c
index d73cd441df8..b678c6c5edf 100644
--- a/src/emu/imagedev/flopdrv.c
+++ b/src/emu/imagedev/flopdrv.c
@@ -29,8 +29,7 @@
TYPE DEFINITIONS
***************************************************************************/
-typedef struct _floppy_drive floppy_drive;
-struct _floppy_drive
+struct floppy_drive
{
/* callbacks */
devcb_resolved_write_line out_idx_func;
@@ -91,8 +90,7 @@ struct _floppy_drive
};
-typedef struct _floppy_error_map floppy_error_map;
-struct _floppy_error_map
+struct floppy_error_map
{
floperr_t ferr;
image_error_t ierr;