mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
326e340efe
PR: ports/6250 Submitted by: maintainer
27 lines
642 B
Plaintext
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"
|