factor/vm/os-freebsd.h

17 lines
307 B
C
Raw Normal View History

2007-09-20 18:09:08 -04:00
#include <osreldate.h>
extern int getosreldate(void);
#include <sys/sysctl.h>
#ifndef KERN_PROC_PATHNAME
#define KERN_PROC_PATHNAME 12
#endif
#define UNKNOWN_TYPE_P(file) ((file)->d_type == DT_UNKNOWN)
#define DIRECTORY_P(file) ((file)->d_type == DT_DIR)
2007-11-14 16:36:48 -05:00
#ifndef environ
extern char **environ;
#endif