DragonFlyBSD: Fix included headers

This commit is contained in:
Benny Baumann
2021-05-22 09:24:30 +02:00
committed by cgzones
parent 2c8353e7cf
commit 07a4657a47
6 changed files with 29 additions and 12 deletions

View File

@ -8,13 +8,18 @@ Released under the GNU GPLv2, see the COPYING file
in the source distribution for its full text.
*/
#include <sys/types.h> // required for kvm.h
#include <kvm.h>
#include <sys/param.h>
#include <osreldate.h>
#include <stdbool.h>
#include <sys/jail.h>
#include <sys/uio.h>
#include <sys/param.h>
#include <sys/resource.h>
#include <sys/uio.h>
#include "Hashtable.h"
#include "ProcessList.h"
#include "UsersTable.h"
#include "dragonflybsd/DragonFlyBSDProcess.h"