opnsense-ports/sysutils/busybox/files/patch-include_libbb.h
Franco Fichtner 140c4059af */*: sync with upstream
Taken from: HardenedBSD
2019-07-18 18:11:36 +02:00

22 lines
513 B
C

--- include/libbb.h.orig 2019-02-14 13:31:15 UTC
+++ include/libbb.h
@@ -53,6 +53,9 @@
#include <termios.h>
#include <time.h>
#include <sys/param.h>
+#ifndef HAVE_XTABS
+# define XTABS TAB3
+#endif
#include <pwd.h>
#include <grp.h>
#if ENABLE_FEATURE_SHADOWPASSWDS
@@ -160,9 +163,6 @@
#ifndef HAVE_FDATASYNC
# define fdatasync fsync
#endif
-#ifndef HAVE_XTABS
-# define XTABS TAB3
-#endif
/*
* Use '%m' to append error string on platforms that support it,
* '%s' and strerror() on those that don't.