2009-07-28 21:44:22 +00:00
|
|
|
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
|
|
|
|
2008-06-14 18:41:12 +00:00
|
|
|
#ifndef FREEBSD_H_
|
|
|
|
#define FREEBSD_H_
|
|
|
|
|
|
|
|
#include "common.h"
|
2009-06-08 15:09:28 +00:00
|
|
|
#include <sys/param.h>
|
2008-06-14 18:41:12 +00:00
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/ucred.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <kvm.h>
|
|
|
|
#if (defined(i386) || defined(__i386__))
|
|
|
|
#include <machine/apm_bios.h>
|
|
|
|
#endif /* i386 || __i386__ */
|
|
|
|
|
|
|
|
kvm_t *kd;
|
|
|
|
|
2009-11-12 22:50:17 +00:00
|
|
|
int get_entropy_avail(unsigned int *);
|
|
|
|
int get_entropy_poolsize(unsigned int *);
|
|
|
|
|
2008-06-14 18:41:12 +00:00
|
|
|
#endif /*FREEBSD_H_*/
|