summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsbruno <sbruno@FreeBSD.org>2015-06-22 17:04:24 +0000
committersbruno <sbruno@FreeBSD.org>2015-06-22 17:04:24 +0000
commitbb1ac314ed49a0272e62074b1e09c8e9d48b24f4 (patch)
tree7791111471eb5052e614e9e4d4c21aaaa0ffd124
parent02d7ae730fc9c5124404c198577ff316d04fe58d (diff)
downloadFreeBSD-src-bb1ac314ed49a0272e62074b1e09c8e9d48b24f4.zip
FreeBSD-src-bb1ac314ed49a0272e62074b1e09c8e9d48b24f4.tar.gz
Make imgact_binmisc_exec() static.
Submitted by: kib Reviewed by: sson
-rw-r--r--sys/kern/imgact_binmisc.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/kern/imgact_binmisc.c b/sys/kern/imgact_binmisc.c
index 5ee9bb8..d4fa40a 100644
--- a/sys/kern/imgact_binmisc.c
+++ b/sys/kern/imgact_binmisc.c
@@ -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;
OpenPOWER on IntegriCloud