mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-16 01:57:09 +00:00
3361596592
We need this on FreeBSD as some of the constants used in ucred.h and mount.h are defined there. Signed-off-by: Nikos Ntarmos <ntarmos@cs.uoi.gr> Signed-off-by: Brenden Matthews <brenden@rty.ca>
17 lines
300 B
C
17 lines
300 B
C
#ifndef FREEBSD_H_
|
|
#define FREEBSD_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__ */
|
|
|
|
kvm_t *kd;
|
|
|
|
#endif /*FREEBSD_H_*/
|