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/boot.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/boot.c')
-rw-r--r-- | src/boot.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -16,6 +16,7 @@ #include "hw/usb.h" // struct usbdevice_s #include "fw/csm.h" // csm_bootprio_* #include "list.h" // hlist_node +#include "malloc.h" // free #include "romfile.h" // romfile_loadint #include "string.h" // memset |