Module Name:    src
Committed By:   pooka
Date:           Sun Nov 18 21:19:53 UTC 2012

Modified Files:
        src/sys/rump/include/rump: makerumpdefs.sh

Log Message:
Necessary _KERNEL wrap to previous.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/rump/include/rump/makerumpdefs.sh

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/include/rump/makerumpdefs.sh
diff -u src/sys/rump/include/rump/makerumpdefs.sh:1.10 src/sys/rump/include/rump/makerumpdefs.sh:1.11
--- src/sys/rump/include/rump/makerumpdefs.sh:1.10	Sun Nov 18 19:25:09 2012
+++ src/sys/rump/include/rump/makerumpdefs.sh	Sun Nov 18 21:19:52 2012
@@ -8,12 +8,16 @@ echo Generating rumpdefs.h
 rm -f rumpdefs.h
 exec > rumpdefs.h
 
-printf '/*	$NetBSD: makerumpdefs.sh,v 1.10 2012/11/18 19:25:09 pooka Exp $	*/\n\n'
+printf '/*	$NetBSD: makerumpdefs.sh,v 1.11 2012/11/18 21:19:52 pooka Exp $	*/\n\n'
 printf '/*\n *\tAUTOMATICALLY GENERATED.  DO NOT EDIT.\n */\n\n'
 printf '#ifndef _RUMP_RUMPDEFS_H_\n'
 printf '#define _RUMP_RUMPDEFS_H_\n\n'
 printf '#include <rump/rump_namei.h>\n'
-printf '#include <inttypes.h>\n'
+printf '#ifdef _KERNEL\n'
+printf '#include <sys/stdint.h>\n'
+printf '#else\n'
+printf '#include <stdint.h>\n'
+printf '#endif\n'
 
 fromvers () {
 	echo

Reply via email to