removed include file in_all.h
This commit is contained in:
parent
0e2a3baa5d
commit
3aa0ecdb5c
|
@ -7,7 +7,6 @@ alloc.3
|
|||
alloc.h
|
||||
botch.c
|
||||
clear.c
|
||||
in_all.h
|
||||
st_alloc.c
|
||||
std_alloc.c
|
||||
No_Mem.c
|
||||
|
|
|
@ -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;
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue