diff options
Diffstat (limited to 'sys/kern/imgact_shell.c')
-rw-r--r-- | sys/kern/imgact_shell.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/kern/imgact_shell.c b/sys/kern/imgact_shell.c index 78479da..a15b56c 100644 --- a/sys/kern/imgact_shell.c +++ b/sys/kern/imgact_shell.c @@ -39,15 +39,11 @@ #define SHELLMAGIC 0x2321 #endif -#define MAXSHELLCMDLEN 64 - -static int exec_shell_imgact __P((struct image_params *imgp)); - /* * Shell interpreter image activator. A interpreter name beginning * at imgp->stringbase is the minimal successful exit requirement. */ -static int +int exec_shell_imgact(imgp) struct image_params *imgp; { |