diff options
-rw-r--r-- | boot/boot_script.c | 1 | ||||
-rw-r--r-- | boot/boot_script.h | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/boot/boot_script.c b/boot/boot_script.c index 75152b3e..fb5b8d6c 100644 --- a/boot/boot_script.c +++ b/boot/boot_script.c @@ -3,7 +3,6 @@ /* Written by Shantanu Goel (goel@cs.columbia.edu). */ #include <mach/mach_types.h> -#include <string.h> #include "boot_script.h" diff --git a/boot/boot_script.h b/boot/boot_script.h index f63200a8..5695328e 100644 --- a/boot/boot_script.h +++ b/boot/boot_script.h @@ -55,8 +55,8 @@ struct cmd /* The user must define these functions, we work like malloc and free. */ -void *boot_script_malloc (size_t); -void boot_script_free (void *, size_t); +void *boot_script_malloc (unsigned int); +void boot_script_free (void *, unsigned int); /* The user must define this function. Load the image of the executable specified by PATH in TASK. Create a thread |