Module Name:    src
Committed By:   martin
Date:           Wed Aug 17 08:31:27 UTC 2011

Modified Files:
        src/sys/kern: vfs_syscalls.c

Log Message:
add missing prototype


To generate a diff of this commit:
cvs rdiff -u -r1.434 -r1.435 src/sys/kern/vfs_syscalls.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/vfs_syscalls.c
diff -u src/sys/kern/vfs_syscalls.c:1.434 src/sys/kern/vfs_syscalls.c:1.435
--- src/sys/kern/vfs_syscalls.c:1.434	Wed Aug 17 07:22:34 2011
+++ src/sys/kern/vfs_syscalls.c	Wed Aug 17 08:31:27 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: vfs_syscalls.c,v 1.434 2011/08/17 07:22:34 manu Exp $	*/
+/*	$NetBSD: vfs_syscalls.c,v 1.435 2011/08/17 08:31:27 martin Exp $	*/
 
 /*-
  * Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -70,7 +70,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.434 2011/08/17 07:22:34 manu Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vfs_syscalls.c,v 1.435 2011/08/17 08:31:27 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_fileassoc.h"
@@ -117,6 +117,8 @@
 static int change_flags(struct vnode *, u_long, struct lwp *);
 static int change_mode(struct vnode *, int, struct lwp *l);
 static int change_owner(struct vnode *, uid_t, gid_t, struct lwp *, int);
+int	do_sys_utimens(struct lwp *l, struct vnode *vp, const char *path,
+	    int flag, const struct timespec *tptr, enum uio_seg seg);
 
 /*
  * This table is used to maintain compatibility with 4.3BSD

Reply via email to