Made acceptable for our ANSI C compiler

This commit is contained in:
ceriel
1991-12-02 13:55:09 +00:00
parent 72d46b4049
commit 79bc624aae
2 changed files with 6 additions and 1 deletions

View File

@@ -86,7 +86,6 @@ char *salloc(length)
unsigned length;
{
char *s,*c;
extern char *malloc() ;
s=c=malloc(length);
if ( !s ) fatal("Out of memory") ;