summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorpooka <pooka@NetBSD.org>2008-08-08 13:57:59 +0000
committerpooka <pooka@NetBSD.org>2008-08-08 13:57:59 +0000
commit0fca7fa92c7f7ea999dc3847cb5602dbc4fa6ca2 (patch)
tree0beee3f8d48affe7a664f6fadeff070cd9065be6 /sys
parent3ad5d8db21c77847f1b3fac92ae47131be3ab4cf (diff)
minor nit: fix header #ifndef namespacing
Diffstat (limited to 'sys')
-rw-r--r--sys/rump/librump/rumpkern/rump.h8
-rw-r--r--sys/rump/librump/rumpuser/rumpuser.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/rump/librump/rumpkern/rump.h b/sys/rump/librump/rumpkern/rump.h
index a2369d3f6b0..46c679ceb33 100644
--- a/sys/rump/librump/rumpkern/rump.h
+++ b/sys/rump/librump/rumpkern/rump.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rump.h,v 1.30 2008/08/01 14:47:28 pooka Exp $ */
+/* $NetBSD: rump.h,v 1.31 2008/08/08 13:57:59 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -27,8 +27,8 @@
* SUCH DAMAGE.
*/
-#ifndef _SYS_RUMP_H_
-#define _SYS_RUMP_H_
+#ifndef _RUMP_RUMP_H_
+#define _RUMP_RUMP_H_
/*
* NOTE: do not #include anything from <sys> here. Otherwise this
@@ -133,4 +133,4 @@ struct vnode *rump_cdir_get(void);
int rump_splfoo(void);
void rump_splx(int);
-#endif /* _SYS_RUMP_H_ */
+#endif /* _RUMP_RUMP_H_ */
diff --git a/sys/rump/librump/rumpuser/rumpuser.h b/sys/rump/librump/rumpuser/rumpuser.h
index 3ae97109efc..7514d4f1547 100644
--- a/sys/rump/librump/rumpuser/rumpuser.h
+++ b/sys/rump/librump/rumpuser/rumpuser.h
@@ -1,4 +1,4 @@
-/* $NetBSD: rumpuser.h,v 1.21 2008/07/20 19:03:04 pooka Exp $ */
+/* $NetBSD: rumpuser.h,v 1.22 2008/08/08 13:57:59 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@@ -27,8 +27,8 @@
* SUCH DAMAGE.
*/
-#ifndef _SYS_RUMPUSER_H_
-#define _SYS_RUMPUSER_H_
+#ifndef _RUMP_RUMPUSER_H_
+#define _RUMP_RUMPUSER_H_
struct stat;
@@ -140,4 +140,4 @@ void rumpuser_set_ipl(int);
int rumpuser_whatis_ipl(void);
void rumpuser_clear_ipl(int);
-#endif /* _SYS_RUMPUSER_H_ */
+#endif /* _RUMP_RUMPUSER_H_ */