diff options
-rw-r--r-- | sys/include/sys/vnode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/sys/vnode.h b/sys/include/sys/vnode.h index 4ad76c6..11bbf99 100644 --- a/sys/include/sys/vnode.h +++ b/sys/include/sys/vnode.h @@ -39,6 +39,7 @@ struct vnode; struct vops { int(*vget)(struct vnode *parent, const char *name, struct vnode **vp); int(*read)(struct vnode *vp, char *buf, size_t count); + int(*write)(struct vnode *vp, const char *buf, size_t count); }; struct vnode { |