summaryrefslogtreecommitdiff
path: root/devel/gtexinfo
diff options
context:
space:
mode:
authorwiz <wiz>2004-07-04 23:41:00 +0000
committerwiz <wiz>2004-07-04 23:41:00 +0000
commita2f447ba608830c4a1a71d755d0c86623520e5cc (patch)
tree0cda24d847099581297a9dbcba7fb7febe48ecc2 /devel/gtexinfo
parent5524d931e2da63dcdf30989d6ca51d43651a64a7 (diff)
downloadpkgsrc-a2f447ba608830c4a1a71d755d0c86623520e5cc.tar.gz
Unneeded after update to 4.7.
Diffstat (limited to 'devel/gtexinfo')
-rw-r--r--devel/gtexinfo/patches/patch-ai48
1 files changed, 0 insertions, 48 deletions
diff --git a/devel/gtexinfo/patches/patch-ai b/devel/gtexinfo/patches/patch-ai
deleted file mode 100644
index 54c226a7c58..00000000000
--- a/devel/gtexinfo/patches/patch-ai
+++ /dev/null
@@ -1,48 +0,0 @@
-$NetBSD: patch-ai,v 1.1 2002/08/10 23:22:02 rh Exp $
-
---- lib/xmalloc.c.orig Tue Jun 20 06:06:31 1995
-+++ lib/xmalloc.c
-@@ -27,10 +27,11 @@
-
- #if !defined (ALREADY_HAVE_XMALLOC)
- #include <stdio.h>
-+#include <stdlib.h>
- #include <sys/types.h>
-
- extern void *malloc (), *realloc ();
--static void memory_error_and_abort ();
-+static void memory_error_and_abort (const char *);
-
- /* **************************************************************** */
- /* */
-@@ -42,8 +43,7 @@
- to hold BYTES number of bytes. If the memory cannot be allocated,
- print an error message and abort. */
- void *
--xmalloc (bytes)
-- int bytes;
-+xmalloc (unsigned bytes)
- {
- void *temp = malloc (bytes);
-
-@@ -53,9 +53,7 @@
- }
-
- void *
--xrealloc (pointer, bytes)
-- void *pointer;
-- int bytes;
-+xrealloc (void *pointer, unsigned bytes)
- {
- void *temp;
-
-@@ -71,8 +69,7 @@
- }
-
- static void
--memory_error_and_abort (fname)
-- char *fname;
-+memory_error_and_abort (const char *fname)
- {
- fprintf (stderr, "%s: Out of virtual memory!\n", fname);
- abort ();