diff options
Diffstat (limited to 'com32/include/sys/exec.h')
-rw-r--r-- | com32/include/sys/exec.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/com32/include/sys/exec.h b/com32/include/sys/exec.h index 7b3a9a0c..d76ae74c 100644 --- a/com32/include/sys/exec.h +++ b/com32/include/sys/exec.h @@ -9,6 +9,7 @@ #define EXEC_H_ #include <sys/module.h> +#include <stdlib.h> /** * EXEC_ROOT_NAME - The name of the ELF module associated with the COM32 module. @@ -41,7 +42,7 @@ * loaded by the lower module layer gets to be executed by the CPU, * thus becoming part of the SYSLINUX environment. */ -extern int exec_init(); +extern int exec_init(size_t root_addr); /** |