mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-02 14:31:57 +00:00
d5af1be997
this actually pertains to 24aaeb2b15e317211af7c94ffddf7b1da1493372
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_*/
|