aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/timeb.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/timeb.h')
-rw-r--r--sys/sys/timeb.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/sys/timeb.h b/sys/sys/timeb.h
index a1b337992721..8759a7ca4f8d 100644
--- a/sys/sys/timeb.h
+++ b/sys/sys/timeb.h
@@ -36,9 +36,12 @@
* SUCH DAMAGE.
*
* @(#)timeb.h 8.2 (Berkeley) 1/21/94
- * $Id$
+ * $Id: timeb.h,v 1.2 1994/08/02 07:53:49 davidg Exp $
*/
+#ifndef _SYS_TIMEB_H_
+#define _SYS_TIMEB_H_
+
/* The ftime(2) system call structure -- deprecated. */
struct timeb {
time_t time; /* seconds since the Epoch */
@@ -46,3 +49,5 @@ struct timeb {
short timezone; /* minutes west of CUT */
short dstflag; /* DST == non-zero */
};
+
+#endif