mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-04 23:55:23 +00:00
20 lines
453 B
C
20 lines
453 B
C
|
/* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
|
||
|
|
||
|
#ifndef DRAGONFLY_H_
|
||
|
#define DRAGONFLY_H_
|
||
|
|
||
|
#include "common.h"
|
||
|
#include <sys/param.h>
|
||
|
#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__ */
|
||
|
|
||
|
int get_entropy_avail(unsigned int *);
|
||
|
int get_entropy_poolsize(unsigned int *);
|
||
|
|
||
|
#endif /*DRAGONFLY_H_*/
|