removed include file in_all.h

This commit is contained in:
ceriel 1989-10-11 15:25:07 +00:00
parent 0e2a3baa5d
commit 3aa0ecdb5c
7 changed files with 4 additions and 15 deletions

View file

@ -7,7 +7,6 @@ alloc.3
alloc.h
botch.c
clear.c
in_all.h
st_alloc.c
std_alloc.c
No_Mem.c

View file

@ -10,10 +10,9 @@
char *Malloc(n) : allocate n bytes
*/
#include "in_all.h"
#include "alloc.h"
EXPORT char *
char *
Malloc(sz)
unsigned int sz;
{

View file

@ -10,10 +10,9 @@
char *Realloc(ptr, n) : reallocate buffer to n bytes
*/
#include "in_all.h"
#include "alloc.h"
EXPORT char *
char *
Realloc(ptr, sz)
char ptr[];
unsigned int sz;

View file

@ -11,10 +11,9 @@
str
*/
#include "in_all.h"
#include "alloc.h"
EXPORT char *
char *
Salloc(str, sz)
register char *str;
register unsigned int sz;

View file

@ -10,10 +10,9 @@
char *Srealloc(ptr, n) : reallocate buffer to n bytes
*/
#include "in_all.h"
#include "alloc.h"
EXPORT char *
char *
Srealloc(str, sz)
char str[];
unsigned int sz;

View file

@ -7,9 +7,6 @@
to check if freed memory is used inappopriately.
*/
#include "in_all.h"
EXPORT
botch(ptr, n)
register char *ptr;
register unsigned int n;

View file

@ -6,10 +6,7 @@
/* clear - clear a block of memory, and try to do it fast.
*/
#include "in_all.h"
/* instead of Calloc: */
EXPORT
clear(ptr, n)
register char *ptr;
register unsigned int n;