summaryrefslogtreecommitdiff
path: root/package/findutils/patches/patch-gnulib_lib_freadahead_h
diff options
context:
space:
mode:
Diffstat (limited to 'package/findutils/patches/patch-gnulib_lib_freadahead_h')
-rw-r--r--package/findutils/patches/patch-gnulib_lib_freadahead_h23
1 files changed, 0 insertions, 23 deletions
diff --git a/package/findutils/patches/patch-gnulib_lib_freadahead_h b/package/findutils/patches/patch-gnulib_lib_freadahead_h
deleted file mode 100644
index 6cd605e41..000000000
--- a/package/findutils/patches/patch-gnulib_lib_freadahead_h
+++ /dev/null
@@ -1,23 +0,0 @@
---- findutils-4.4.2.orig/gnulib/lib/freadahead.h Sun May 10 23:23:57 2009
-+++ findutils-4.4.2/gnulib/lib/freadahead.h Sat May 24 15:13:05 2014
-@@ -29,7 +29,20 @@ extern "C" {
-
- STREAM must not be wide-character oriented. */
-
-+#if HAVE___FREADAHEAD || (defined(__linux__) && !defined(__GLIBC__) && !defined(__UCLIBC__)) /* musl libc */
-+
-+#ifndef HAVE___FREADAHEAD
-+#define HAVE___FREADAHEAD 1
-+#endif
-+
-+# include <stdio_ext.h>
-+# define freadahead(stream) __freadahead (stream)
-+
-+#else
-+
- extern size_t freadahead (FILE *stream);
-+
-+#endif
-
- #ifdef __cplusplus
- }