Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 2015 17:04:24 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284701 - head/sys/kern
Message-ID:  <201506221704.t5MH4Oll076714@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506221704.t5MH4Oll076714>