removed include file in_all.h
This commit is contained in:
parent
0e2a3baa5d
commit
3aa0ecdb5c
|
@ -7,7 +7,6 @@ alloc.3
|
||||||
alloc.h
|
alloc.h
|
||||||
botch.c
|
botch.c
|
||||||
clear.c
|
clear.c
|
||||||
in_all.h
|
|
||||||
st_alloc.c
|
st_alloc.c
|
||||||
std_alloc.c
|
std_alloc.c
|
||||||
No_Mem.c
|
No_Mem.c
|
||||||
|
|
|
@ -10,10 +10,9 @@
|
||||||
char *Malloc(n) : allocate n bytes
|
char *Malloc(n) : allocate n bytes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "in_all.h"
|
|
||||||
#include "alloc.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
EXPORT char *
|
char *
|
||||||
Malloc(sz)
|
Malloc(sz)
|
||||||
unsigned int sz;
|
unsigned int sz;
|
||||||
{
|
{
|
||||||
|
|
|
@ -10,10 +10,9 @@
|
||||||
char *Realloc(ptr, n) : reallocate buffer to n bytes
|
char *Realloc(ptr, n) : reallocate buffer to n bytes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "in_all.h"
|
|
||||||
#include "alloc.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
EXPORT char *
|
char *
|
||||||
Realloc(ptr, sz)
|
Realloc(ptr, sz)
|
||||||
char ptr[];
|
char ptr[];
|
||||||
unsigned int sz;
|
unsigned int sz;
|
||||||
|
|
|
@ -11,10 +11,9 @@
|
||||||
str
|
str
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "in_all.h"
|
|
||||||
#include "alloc.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
EXPORT char *
|
char *
|
||||||
Salloc(str, sz)
|
Salloc(str, sz)
|
||||||
register char *str;
|
register char *str;
|
||||||
register unsigned int sz;
|
register unsigned int sz;
|
||||||
|
|
|
@ -10,10 +10,9 @@
|
||||||
char *Srealloc(ptr, n) : reallocate buffer to n bytes
|
char *Srealloc(ptr, n) : reallocate buffer to n bytes
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "in_all.h"
|
|
||||||
#include "alloc.h"
|
#include "alloc.h"
|
||||||
|
|
||||||
EXPORT char *
|
char *
|
||||||
Srealloc(str, sz)
|
Srealloc(str, sz)
|
||||||
char str[];
|
char str[];
|
||||||
unsigned int sz;
|
unsigned int sz;
|
||||||
|
|
|
@ -7,9 +7,6 @@
|
||||||
to check if freed memory is used inappopriately.
|
to check if freed memory is used inappopriately.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "in_all.h"
|
|
||||||
|
|
||||||
EXPORT
|
|
||||||
botch(ptr, n)
|
botch(ptr, n)
|
||||||
register char *ptr;
|
register char *ptr;
|
||||||
register unsigned int n;
|
register unsigned int n;
|
||||||
|
|
|
@ -6,10 +6,7 @@
|
||||||
/* clear - clear a block of memory, and try to do it fast.
|
/* clear - clear a block of memory, and try to do it fast.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "in_all.h"
|
|
||||||
|
|
||||||
/* instead of Calloc: */
|
/* instead of Calloc: */
|
||||||
EXPORT
|
|
||||||
clear(ptr, n)
|
clear(ptr, n)
|
||||||
register char *ptr;
|
register char *ptr;
|
||||||
register unsigned int n;
|
register unsigned int n;
|
||||||
|
|
Loading…
Reference in a new issue