Made acceptable for our ANSI C compiler

This commit is contained in:
ceriel
1991-12-02 13:55:09 +00:00
parent 3388e4deb6
commit f61ddc4926
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") ;