You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/x11-misc/xwit/files/malloc.patch

12 lines
284 B

--- dsimple.c_ 2005-06-05 16:07:10.000000000 +0200
+++ dsimple.c 2005-06-05 16:07:47.000000000 +0200
@@ -46,7 +46,7 @@
char *Malloc(size)
unsigned size;
{
- char *data, *malloc();
+ char *data; //, *malloc();
if (!(data = malloc(size)))
Fatal_Error("Out of memory!");