1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-28 21:29:28 +00:00
freebsd-ports/graphics/aview/files/patch-aa
Vanilla I. Shu 326e340efe Upgrade to 1.2.
PR:	ports/6250
Submitted by:	maintainer
1998-04-11 18:21:23 +00:00

27 lines
642 B
Plaintext

--- asciiview.orig Wed Apr 8 16:34:50 1998
+++ asciiview Wed Apr 8 16:35:02 1998
@@ -1,3 +1,4 @@
+#!/bin/sh
# asciiview - an ascii art image browser script. Front end for aview/aaflip
clear()
{
--- image.c.orig Wed Apr 8 16:34:02 1998
+++ image.c Wed Apr 8 16:34:43 1998
@@ -1,5 +1,5 @@
#include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
int imgwidth, imgheight;
unsigned char *imgdata;
--- ui.c.orig Wed Apr 8 16:34:09 1998
+++ ui.c Wed Apr 8 16:34:26 1998
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <ctype.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <string.h>
#include <aalib.h>
#include "shrink.h"