Fix building on uclibc thanks to Solar

This commit is contained in:
Roy Marples 2007-07-31 16:40:32 +00:00
parent cb172722a9
commit 90f0ea65cb

View File

@ -7,25 +7,23 @@
#define APPLET "mountinfo" #define APPLET "mountinfo"
#include <sys/types.h>
#if defined(__DragonFly__) || defined(__FreeBSD__) || \ #if defined(__DragonFly__) || defined(__FreeBSD__) || \
defined(__NetBSD__) || defined(__OpenBSD__) defined(__NetBSD__) || defined(__OpenBSD__)
#define BSD #define BSD
#include <sys/types.h>
#include <sys/param.h> #include <sys/param.h>
#include <sys/ucred.h> #include <sys/ucred.h>
#include <sys/mount.h> #include <sys/mount.h>
#elif defined(__linux__)
#include <limits.h>
#endif #endif
#include <errno.h> #include <errno.h>
#include <getopt.h> #include <getopt.h>
#include <limits.h> #include <limits.h>
#include <regex.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <regex.h>
#include "builtins.h" #include "builtins.h"
#include "einfo.h" #include "einfo.h"