From: downsj Date: Wed, 16 Apr 1997 09:49:00 +0000 (+0000) Subject: Multiple include protection. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=76232d39dcf2ef078d20448e50b5a0925ca61ad2;p=openbsd Multiple include protection. --- diff --git a/sys/sys/mount.h b/sys/sys/mount.h index 615086936f6..2ad19911a6a 100644 --- a/sys/sys/mount.h +++ b/sys/sys/mount.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mount.h,v 1.17 1997/04/12 20:20:08 graichen Exp $ */ +/* $OpenBSD: mount.h,v 1.18 1997/04/16 09:49:00 downsj Exp $ */ /* $NetBSD: mount.h,v 1.48 1996/02/18 11:55:47 fvdl Exp $ */ /* @@ -36,6 +36,9 @@ * @(#)mount.h 8.15 (Berkeley) 7/14/94 */ +#ifndef _SYS_MOUNT_H_ +#define _SYS_MOUNT_H_ + #ifndef _KERNEL #include #endif @@ -479,3 +482,4 @@ int unmount __P((const char *, int)); __END_DECLS #endif /* _KERNEL */ +#endif /* !_SYS_MOUNT_H_ */