diff options
author | 2012-09-15 21:47:30 +0000 | |
---|---|---|
committer | 2012-09-15 21:47:30 +0000 | |
commit | ab97dc30efdd5cc1abf8c65b8ce29af364219167 (patch) | |
tree | 5ab46b3c21f6e0e4173a79a4151e019b3f2dc17e /src/emu/cpu/x86log.c | |
parent | d1da89cc7817315f05269205a3f56d36ebba170b (diff) |
First pass at modernizing struct definitions.
Diffstat (limited to 'src/emu/cpu/x86log.c')
-rw-r--r-- | src/emu/cpu/x86log.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/emu/cpu/x86log.c b/src/emu/cpu/x86log.c index 1a824d64c0d..159b0044018 100644 --- a/src/emu/cpu/x86log.c +++ b/src/emu/cpu/x86log.c @@ -31,8 +31,7 @@ ***************************************************************************/ /* code logging info */ -typedef struct _log_comment log_comment; -struct _log_comment +struct log_comment { x86code * base; const char * string; @@ -40,8 +39,7 @@ struct _log_comment /* data ranges */ -typedef struct _data_range_t data_range_t; -struct _data_range_t +struct data_range_t { x86code * base; x86code * end; |