summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-apps/pv/files/pv-1.6.19-stddef-include.patch')
-rw-r--r--sys-apps/pv/files/pv-1.6.19-stddef-include.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/sys-apps/pv/files/pv-1.6.19-stddef-include.patch b/sys-apps/pv/files/pv-1.6.19-stddef-include.patch
deleted file mode 100644
index b28a1c8d063b..000000000000
--- a/sys-apps/pv/files/pv-1.6.19-stddef-include.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-https://github.com/a-j-wood/pv/pull/1
-
-From: Sam James <sam@gentoo.org>
-Date: Wed, 8 Sep 2021 01:03:29 +0100
-Subject: [PATCH] src/pv/number.c: add missing <stddef.h> include for NULL
-
---- a/src/pv/number.c
-+++ b/src/pv/number.c
-@@ -2,6 +2,8 @@
- * Functions for converting strings to numbers.
- */
-
-+#include <stddef.h>
-+
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif