Browse Source

removed include file in_all.h

ceriel 35 years ago
parent
commit
8c13506a8d

+ 0 - 1
modules/src/alloc/.distr

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

+ 1 - 2
modules/src/alloc/Malloc.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;
 {

+ 1 - 2
modules/src/alloc/Realloc.c

@@ -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;

+ 1 - 2
modules/src/alloc/Salloc.c

@@ -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;

+ 1 - 2
modules/src/alloc/Srealloc.c

@@ -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;

+ 0 - 3
modules/src/alloc/botch.c

@@ -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;

+ 0 - 3
modules/src/alloc/clear.c

@@ -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;