diff options
author | bde <bde@FreeBSD.org> | 1995-07-29 11:44:31 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-07-29 11:44:31 +0000 |
commit | 38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc (patch) | |
tree | b89d1e0366b685acdcb1eb8c959a65e2e330cb0c /sys/vm/vm_object.h | |
parent | 795b455aacbca36da42882b1290f5d37f1618bfe (diff) | |
download | FreeBSD-src-38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc.zip FreeBSD-src-38a74a7bc23af4d5ed5deeff2f4ab6329b0a26cc.tar.gz |
Eliminate sloppy common-style declarations. There should be none left for
the LINT configuation.
Diffstat (limited to 'sys/vm/vm_object.h')
-rw-r--r-- | sys/vm/vm_object.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index 08dab3b..b0d5656 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.h,v 1.19 1995/07/13 08:48:36 davidg Exp $ + * $Id: vm_object.h,v 1.20 1995/07/16 13:28:37 davidg Exp $ */ /* @@ -133,16 +133,16 @@ extern int vm_object_cache_max; TAILQ_HEAD(object_q, vm_object); -struct object_q vm_object_cached_list; /* list of objects persisting */ -int vm_object_cached; /* size of cached list */ +extern struct object_q vm_object_cached_list; /* list of objects persisting */ +extern int vm_object_cached; /* size of cached list */ -struct object_q vm_object_list; /* list of allocated objects */ -long vm_object_count; /* count of all objects */ +extern struct object_q vm_object_list; /* list of allocated objects */ +extern long vm_object_count; /* count of all objects */ /* lock for object list and count */ -vm_object_t kernel_object; /* the single kernel object */ -vm_object_t kmem_object; +extern vm_object_t kernel_object; /* the single kernel object */ +extern vm_object_t kmem_object; #endif /* KERNEL */ |