diff options
author | assar <assar@cvs.openbsd.org> | 2000-02-01 04:00:51 +0000 |
---|---|---|
committer | assar <assar@cvs.openbsd.org> | 2000-02-01 04:00:51 +0000 |
commit | 25f743a40b7db1a82fef13fc339c6c000ad7dc61 (patch) | |
tree | 2a81e34a438fb74a906a86185ccdf888b0226bac /sys | |
parent | 376a7976c0a22002c6750673c39178e703bed58b (diff) |
add declaration of `vnops'
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/file.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sys/file.h b/sys/sys/file.h index 815bcca6836..2a653c13584 100644 --- a/sys/sys/file.h +++ b/sys/sys/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.4 1998/03/01 19:33:54 deraadt Exp $ */ +/* $OpenBSD: file.h,v 1.5 2000/02/01 04:00:50 assar Exp $ */ /* $NetBSD: file.h,v 1.11 1995/03/26 20:24:13 jtc Exp $ */ /* @@ -78,5 +78,6 @@ LIST_HEAD(filelist, file); extern struct filelist filehead; /* head of list of open files */ extern int maxfiles; /* kernel limit on number of open files */ extern int nfiles; /* actual number of open files */ +extern struct fileops vnops; /* vnode operations for files */ #endif /* _KERNEL */ |