aboutsummaryrefslogtreecommitdiff
path: root/src/cdrom.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-14 19:10:40 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-18 20:48:34 -0400
commitfa9c66a6560a5009302aff22602ffa3e955726d9 (patch)
tree55215b572a47412f5eefb884517e6b71aaf9ee68 /src/cdrom.c
parent0ac5e9e0fc84032c99d9be6c4903afb2d616c97f (diff)
downloadseabios-hppa-fa9c66a6560a5009302aff22602ffa3e955726d9.zip
seabios-hppa-fa9c66a6560a5009302aff22602ffa3e955726d9.tar.gz
seabios-hppa-fa9c66a6560a5009302aff22602ffa3e955726d9.tar.bz2
Rename util.c to string.c and introduce string.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/cdrom.c')
-rw-r--r--src/cdrom.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cdrom.c b/src/cdrom.c
index 94265b0..0d3fa1f 100644
--- a/src/cdrom.c
+++ b/src/cdrom.c
@@ -6,11 +6,12 @@
// This file may be distributed under the terms of the GNU LGPLv3 license.
#include "disk.h" // cdrom_13
-#include "util.h" // memset
+#include "util.h" // dprintf
#include "bregs.h" // struct bregs
#include "biosvar.h" // GET_GLOBAL
#include "hw/ata.h" // ATA_CMD_REQUEST_SENSE
#include "hw/blockcmd.h" // CDB_CMD_REQUEST_SENSE
+#include "string.h" // memset
// Locks for removable devices
u8 CDRom_locks[BUILD_MAX_EXTDRIVE] VARLOW;