Module Name:    src
Committed By:   pooka
Date:           Mon Dec  9 21:11:15 UTC 2013

Modified Files:
        src/sys/kern: makesyscalls.sh

Log Message:
need string.h now for !_KERNEL


To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/sys/kern/makesyscalls.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/kern/makesyscalls.sh
diff -u src/sys/kern/makesyscalls.sh:1.137 src/sys/kern/makesyscalls.sh:1.138
--- src/sys/kern/makesyscalls.sh:1.137	Mon Dec  9 19:18:52 2013
+++ src/sys/kern/makesyscalls.sh	Mon Dec  9 21:11:15 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: makesyscalls.sh,v 1.137 2013/12/09 19:18:52 pooka Exp $
+#	$NetBSD: makesyscalls.sh,v 1.138 2013/12/09 21:11:15 pooka Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -233,6 +233,7 @@ NR == 1 {
 	printf "#include <errno.h>\n" > rumpcalls
 	printf "#include <stdint.h>\n" > rumpcalls
 	printf "#include <stdlib.h>\n\n" > rumpcalls
+	printf "#include <string.h>\n\n" > rumpcalls
 	printf "#include <srcsys/syscall.h>\n" > rumpcalls
 	printf "#include <srcsys/syscallargs.h>\n\n" > rumpcalls
 	printf "#include <rump/rumpclient.h>\n\n" > rumpcalls

Reply via email to