Module Name: src
Committed By: pooka
Date: Fri Dec 20 10:00:59 UTC 2013
Modified Files:
src/sys/rump/net/lib/libshmif: shmif_busops.c
Log Message:
use _KERNEL_RCSID only in _KERNEL, _RCSID elsewhere
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/rump/net/lib/libshmif/shmif_busops.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/net/lib/libshmif/shmif_busops.c
diff -u src/sys/rump/net/lib/libshmif/shmif_busops.c:1.10 src/sys/rump/net/lib/libshmif/shmif_busops.c:1.11
--- src/sys/rump/net/lib/libshmif/shmif_busops.c:1.10 Fri Dec 20 09:06:35 2013
+++ src/sys/rump/net/lib/libshmif/shmif_busops.c Fri Dec 20 10:00:59 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: shmif_busops.c,v 1.10 2013/12/20 09:06:35 pooka Exp $ */
+/* $NetBSD: shmif_busops.c,v 1.11 2013/12/20 10:00:59 pooka Exp $ */
/*
* Copyright (c) 2009, 2010 Antti Kantee. All Rights Reserved.
@@ -27,8 +27,13 @@
* SUCH DAMAGE.
*/
+#ifdef _KERNEL
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: shmif_busops.c,v 1.10 2013/12/20 09:06:35 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: shmif_busops.c,v 1.11 2013/12/20 10:00:59 pooka Exp $");
+#else
+#include <rump/rumpuser_port.h>
+__RCSID("$NetBSD: shmif_busops.c,v 1.11 2013/12/20 10:00:59 pooka Exp $");
+#endif
#include <sys/param.h>