Make imgact_binmisc_exec() static.

Submitted by:	kib
Reviewed by:	sson
This commit is contained in:
Sean Bruno 2015-06-22 17:04:24 +00:00
parent 65faab7f4a
commit 945afa7c25
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284701

View File

@ -101,9 +101,6 @@ static int interp_list_entry_count = 0;
static struct sx interp_list_sx;
int imgact_binmisc_exec(struct image_params *imgp);
/*
* Populate the entry with the information about the interpreter.
*/
@ -576,7 +573,7 @@ imgact_binmisc_find_interpreter(const char *image_header)
return (NULL);
}
int
static int
imgact_binmisc_exec(struct image_params *imgp)
{
const char *image_header = imgp->image_header;