mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-14 19:39:47 +00:00
610b0b628d
In order to do this correctly: Removed duplicate includes Fixed mpd functions to accept mpd_s instead of information Freed mpd.h of any need to include conky.h (mpd.c still includes it for the constants) git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky1@1154 7f574dfc-610e-0410-a909-a81674777703
16 lines
277 B
C
16 lines
277 B
C
#ifndef FREEBSD_H_
|
|
#define FREEBSD_H_
|
|
|
|
#include "common.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_*/
|