summaryrefslogtreecommitdiff
path: root/shells/rc/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'shells/rc/patches/patch-ae')
-rw-r--r--shells/rc/patches/patch-ae15
1 files changed, 0 insertions, 15 deletions
diff --git a/shells/rc/patches/patch-ae b/shells/rc/patches/patch-ae
deleted file mode 100644
index f74b56934a2..00000000000
--- a/shells/rc/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.1 1998/08/23 05:52:47 garbled Exp $
---- nalloc.c.orig Mon Jul 13 02:32:50 1998
-+++ nalloc.c Mon Jul 13 02:34:46 1998
-@@ -113,3 +113,5 @@
- extern void *ealloc(SIZE_T n) {
-+#if !(defined(BSD) && BSD >= 199306)
- extern void *malloc(SIZE_T);
-+#endif
- void *p = malloc(n);
-@@ -123,3 +125,5 @@
- extern void *erealloc(void *p, SIZE_T n) {
-+#if !(defined(BSD) && BSD >= 199306)
- extern void *realloc(void *, SIZE_T);
-+#endif
- if (p == NULL) /* convenience feature */