aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorChris Rees <utisoft@gmail.com>2011-01-24 17:03:36 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-01-24 17:04:59 +0100
commite3c127d846eb2febbdb86bcf6c0c92622ab98eea (patch)
treec3d4458c20e13cce49bf049efee798de650eadab /include/libbb.h
parent271c0ce379be4b59d28e17f4774f5a078e77f64b (diff)
downloadbusybox-e3c127d846eb2febbdb86bcf6c0c92622ab98eea.tar.gz
FreeBSD compat
Signed-off-by: Chris Rees <utisoft@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 6e37b8d04..aa7944a5d 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -38,6 +38,12 @@
#include <time.h>
#include <unistd.h>
#include <sys/param.h>
+#ifndef HAVE_CLEARENV
+# define clearenv() do { if (environ) environ[0] = NULL; } while (0)
+#endif
+#ifndef HAVE_FDATASYNC
+# define fdatasync fsync
+#endif
#ifdef HAVE_MNTENT_H
# include <mntent.h>
#endif