1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-07 02:18:13 +00:00
SCCS-file: scheck.c
SCCS-SID: 7.5
This commit is contained in:
Arthur David Olson
1986-01-14 19:26:37 -05:00
committed by Paul Eggert
parent b6bfa8917f
commit 86766b3778

View File

@@ -10,8 +10,8 @@ static char sccsid[] = "%W%";
#include "ctype.h"
#ifndef arg4alloc
#define arg4alloc unsigned
#ifndef alloc_t
#define alloc_t unsigned
#endif
#ifndef MAL
@@ -32,7 +32,7 @@ char * format;
if (string == NULL || format == NULL)
return "";
fbuf = malloc((arg4alloc) (2 * strlen(format) + 4));
fbuf = malloc((alloc_t) (2 * strlen(format) + 4));
if (fbuf == MAL)
return "";
fp = format;