diff options
Diffstat (limited to 'boot/boot_script.h')
-rw-r--r-- | boot/boot_script.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |