diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 20:23:54 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 9dea59025f8aa3742ff5b27d1772e1651066ffb9 (patch) | |
tree | 98df1ab2466f14dffee39a7a56db813db6ad3aef /src/hw/esp-scsi.c | |
parent | 41639f80b6405563bf36844f3aeab1b6fe912ec6 (diff) | |
download | seabios-9dea59025f8aa3742ff5b27d1772e1651066ffb9.tar.gz |
Move malloc code from pmm.c to new files malloc.c and malloc.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/esp-scsi.c')
-rw-r--r-- | src/hw/esp-scsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hw/esp-scsi.c b/src/hw/esp-scsi.c index 49c74ffd..0f55bb98 100644 --- a/src/hw/esp-scsi.c +++ b/src/hw/esp-scsi.c @@ -20,6 +20,7 @@ #include "blockcmd.h" // scsi_drive_setup #include "fw/paravirt.h" // runningOnQEMU #include "disk.h" +#include "malloc.h" // free #include "string.h" // memset #define ESP_TCLO 0x00 |