aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1995-05-12 21:39:48 +0000
committerDavid Greenman <dg@FreeBSD.org>1995-05-12 21:39:48 +0000
commitc4cf09ffe6c9b6b3f52e7e20c1dcb9da1ccb5cfa (patch)
treece482198ada3b9291d7e51e4b7806187054cbe6b
parentb94c770a5e39145725d8e2e81020aa6309949151 (diff)
downloadsrc-c4cf09ffe6c9b6b3f52e7e20c1dcb9da1ccb5cfa.tar.gz
src-c4cf09ffe6c9b6b3f52e7e20c1dcb9da1ccb5cfa.zip
pread/pwrite() should be static.
Submitted by: sef
Notes
Notes: svn path=/head/; revision=8485
-rw-r--r--sys/kern/sys_process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c
index 5221a7f03ce2..350433cb910c 100644
--- a/sys/kern/sys_process.c
+++ b/sys/kern/sys_process.c
@@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: sys_process.c,v 1.11 1995/02/19 02:50:31 davidg Exp $
+ * $Id: sys_process.c,v 1.12 1995/03/16 18:12:42 bde Exp $
*/
#include <sys/param.h>
@@ -46,7 +46,7 @@
#include <sys/user.h>
-int
+static int
pread (struct proc *procp, unsigned int addr, unsigned int *retval) {
int rv;
vm_map_t map, tmap;
@@ -93,7 +93,7 @@ pread (struct proc *procp, unsigned int addr, unsigned int *retval) {
return rv;
}
-int
+static int
pwrite (struct proc *procp, unsigned int addr, unsigned int datum) {
int rv;
vm_map_t map, tmap;