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/romfile.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/romfile.c')
-rw-r--r-- | src/romfile.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/romfile.c b/src/romfile.c index 94e1ed51..835ca99f 100644 --- a/src/romfile.c +++ b/src/romfile.c @@ -6,6 +6,7 @@ #include "config.h" // CONFIG_* #include "util.h" // dprintf +#include "malloc.h" // free #include "romfile.h" // struct romfile_s #include "string.h" // memcmp |