diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-08-28 05:55:07 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-08-28 05:55:07 +0000 |
commit | 7b8fc810f571a0f740104617fd3c1863a8ef1dd6 (patch) | |
tree | 38ff58ca1324b1a7f946a93dc04794a5cd2f3460 | |
parent | c8db614b376e116d0a052e8aef5bf57b7af9c3d0 (diff) |
Add obviously missing #includes
-rw-r--r-- | regress/sys/kern/mquery/mquery.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/regress/sys/kern/mquery/mquery.c b/regress/sys/kern/mquery/mquery.c index d40f87f46e4..d98b08e0b73 100644 --- a/regress/sys/kern/mquery/mquery.c +++ b/regress/sys/kern/mquery/mquery.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mquery.c,v 1.2 2004/08/02 20:18:50 drahn Exp $ */ +/* $OpenBSD: mquery.c,v 1.3 2015/08/28 05:55:06 guenther Exp $ */ /* * Copyright (c) 2003 Dale Rahn. All rights reserved. @@ -27,6 +27,8 @@ #include <sys/types.h> #include <sys/mman.h> +#include <stdio.h> +#include <stdlib.h> #include <unistd.h> #include <errno.h> #include <machine/vmparam.h> |