svn commit: r284701 - head/sys/kern

Sean Bruno sbruno at FreeBSD.org
Mon Jun 22 17:04:25 UTC 2015


Author: sbruno
Date: Mon Jun 22 17:04:24 2015
New Revision: 284701
URL: https://svnweb.freebsd.org/changeset/base/284701

Log:
  Make imgact_binmisc_exec() static.
  
  Submitted by:	kib
  Reviewed by:	sson

Modified:
  head/sys/kern/imgact_binmisc.c

Modified: head/sys/kern/imgact_binmisc.c
==============================================================================
--- head/sys/kern/imgact_binmisc.c	Mon Jun 22 16:24:27 2015	(r284700)
+++ head/sys/kern/imgact_binmisc.c	Mon Jun 22 17:04:24 2015	(r284701)
@@ -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 ch
 	return (NULL);
 }
 
-int
+static int
 imgact_binmisc_exec(struct image_params *imgp)
 {
 	const char *image_header = imgp->image_header;


More information about the svn-src-all mailing list