diff --git a/src/system/boot/platform/bios_ia32/start.c b/src/system/boot/platform/bios_ia32/start.c index fd5f67ffb7..18a4b0783b 100644 --- a/src/system/boot/platform/bios_ia32/start.c +++ b/src/system/boot/platform/bios_ia32/start.c @@ -21,7 +21,7 @@ #include -#define HEAP_SIZE 32768 +#define HEAP_SIZE 65536 // GCC defined globals extern void (*__ctor_list)(void); diff --git a/src/system/boot/platform/openfirmware/start.c b/src/system/boot/platform/openfirmware/start.c index 04f7dc5621..6334e5e41b 100644 --- a/src/system/boot/platform/openfirmware/start.c +++ b/src/system/boot/platform/openfirmware/start.c @@ -1,7 +1,7 @@ /* -** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. -** Distributed under the terms of the Haiku License. -*/ + * Copyright 2003-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Distributed under the terms of the MIT License. + */ #include @@ -17,7 +17,7 @@ #include "machine.h" -#define HEAP_SIZE 32768 +#define HEAP_SIZE 65536 void _start(uint32 _unused1, uint32 _unused2, void *openFirmwareEntry);