summaryrefslogtreecommitdiff
path: root/devel/gtexinfo
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2004-07-04 23:41:00 +0000
committerwiz <wiz@pkgsrc.org>2004-07-04 23:41:00 +0000
commitec1d0d10415ae4d0cc89cf3b762b40f0d7dbb53e (patch)
tree0cda24d847099581297a9dbcba7fb7febe48ecc2 /devel/gtexinfo
parent9a19c22e86fe984283e68a775ed3cf79763e85e9 (diff)
downloadpkgsrc-ec1d0d10415ae4d0cc89cf3b762b40f0d7dbb53e.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 ();