mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-30 18:49:31 +00:00
eebc8c653b
* Reform source with clang-format. Rules applied with: $ find . -iname *.h -o -iname *.cc | xargs clang-format \ -style=file -i -fallback-style=google * Add clang-format and analyze to build. Based on the excellent work at: https://github.com/ttroy50/cmake-examples * Clean up CMake stuff on macOS. * Remove vim/emacs modelines. * Update copyright dates. * Build fixes. * Build fixes. * Build fixes. * Build fixes. * Build fixes. * Build fixes.
20 lines
383 B
C
20 lines
383 B
C
/* */
|
|
|
|
#ifndef DRAGONFLY_H_
|
|
#define DRAGONFLY_H_
|
|
|
|
#include <fcntl.h>
|
|
#include <kvm.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/param.h>
|
|
#include <sys/ucred.h>
|
|
#include "common.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_*/
|