From 6f31cdcdba181783f3fa345f98014f28dea1ae71 Mon Sep 17 00:00:00 2001 From: "Wojciech A. Koszek" Date: Mon, 18 Jan 2010 23:04:38 +0000 Subject: [PATCH] Include stdlib.h for exit(3) and unistd.h for syscall(2). This makes this program to compile cleanly. --- share/examples/kld/syscall/test/call.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/examples/kld/syscall/test/call.c b/share/examples/kld/syscall/test/call.c index 9183997821cd..093ec0113d50 100644 --- a/share/examples/kld/syscall/test/call.c +++ b/share/examples/kld/syscall/test/call.c @@ -27,6 +27,8 @@ */ #include +#include +#include #include #include #include