diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-09-14 22:27:14 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-09-18 20:48:34 -0400 |
commit | 8fb3a5edf3ca4e55d51c6555b8f7810fdfc4451c (patch) | |
tree | 2812df16122c525d1602b5a7244596afd456edc0 /src/malloc.c | |
parent | c5e06fb2452476e45dbae2d9f72bec7d2e874266 (diff) | |
download | seabios-8fb3a5edf3ca4e55d51c6555b8f7810fdfc4451c.tar.gz |
Move optionroms.h to std/optionrom.h and util.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c index 65a0bb14..281f41e4 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -9,9 +9,9 @@ #include "list.h" // hlist_node #include "malloc.h" // _malloc #include "memmap.h" // struct e820entry -#include "optionroms.h" // OPTION_ROM_ALIGN #include "output.h" // dprintf #include "stacks.h" // wait_preempt +#include "std/optionrom.h" // OPTION_ROM_ALIGN #include "string.h" // memset // Information on a reserved area. |