diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-16 09:49:01 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-04-16 09:49:01 +0000 |
commit | 6dbcee9d521ccbf0bbe04b6c10a9e48c411ce640 (patch) | |
tree | 461349eeb2aa825c32ff9ce7b65cf634767d1380 /sys | |
parent | 6065e7f382b519cb7b969ad90706160eb1305e69 (diff) |
Multiple include protection.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mount.h | 6 |
1 files changed, 5 insertions, 1 deletions
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 <sys/ucred.h> #endif @@ -479,3 +482,4 @@ int unmount __P((const char *, int)); __END_DECLS #endif /* _KERNEL */ +#endif /* !_SYS_MOUNT_H_ */ |