aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/acct.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/acct.h')
-rw-r--r--sys/sys/acct.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/sys/sys/acct.h b/sys/sys/acct.h
index d24724cfe854..a152907c8840 100644
--- a/sys/sys/acct.h
+++ b/sys/sys/acct.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright (c) UNIX System Laboratories, Inc. All or some portions
+ * of this file are derived from material licensed to the
+ * University of California by American Telephone and Telegraph Co.
+ * or UNIX System Laboratories, Inc. and are reproduced herein with
+ * the permission of UNIX System Laboratories, Inc.
+ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -31,9 +38,12 @@
* SUCH DAMAGE.
*
* from: @(#)acct.h 7.3 (Berkeley) 2/15/91
- * $Id: acct.h,v 1.2 1993/10/16 17:16:18 rgrimes Exp $
+ * $Id: acct.h,v 1.3.2.1 1994/05/04 07:57:00 rgrimes Exp $
*/
+#ifndef _SYS_ACCT_H_
+#define _SYS_ACCT_H_ 1
+
/*
* Accounting structures; these use a comp_t type which is a 3 bits base 8
* exponent, 13 bit fraction ``floating point'' number. Units are 1/AHZ
@@ -67,5 +77,7 @@ struct acct {
#define AHZ 64
#ifdef KERNEL
-struct vnode *acctp;
+extern struct vnode *acctp;
#endif
+
+#endif /* _SYS_ACCT_H_ */