Some minor corrections
This commit is contained in:
parent
1ee5101ba7
commit
bf37d48ac5
|
@ -3,6 +3,7 @@ HDIR = $(EMHOME)/modules/h
|
|||
INSTALL=$(EMHOME)/modules/install
|
||||
COMPARE=$(EMHOME)/modules/compare
|
||||
INCLUDES = -I. -I$(HDIR)
|
||||
AR = ar
|
||||
|
||||
CFLAGS = -O $(INCLUDES)
|
||||
|
||||
|
@ -24,7 +25,7 @@ OBJECTS = botch.o clear.o st_alloc.o Malloc.o Salloc.o \
|
|||
all: liballoc.a
|
||||
|
||||
liballoc.a: $(OBJECTS)
|
||||
ar cr liballoc.a $(OBJECTS)
|
||||
$(AR) cr liballoc.a $(OBJECTS)
|
||||
-sh -c 'ranlib liballoc.a'
|
||||
|
||||
install: all
|
||||
|
|
|
@ -8,11 +8,8 @@
|
|||
/* The memory allocation routines offered in this file are:
|
||||
|
||||
char *Malloc(n) : allocate n bytes
|
||||
|
||||
This file imports routines from "system".
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
#include "in_all.h"
|
||||
#include "alloc.h"
|
||||
|
||||
|
|
|
@ -8,11 +8,8 @@
|
|||
/* The memory allocation routines offered in this file are:
|
||||
|
||||
char *Realloc(ptr, n) : reallocate buffer to n bytes
|
||||
|
||||
This file imports routines from "system".
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
#include "in_all.h"
|
||||
#include "alloc.h"
|
||||
|
||||
|
|
|
@ -9,11 +9,8 @@
|
|||
|
||||
char *Salloc(str, n) : allocate n bytes, initialized with the string
|
||||
str
|
||||
|
||||
This file imports routines from "system".
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
#include "in_all.h"
|
||||
#include "alloc.h"
|
||||
|
||||
|
|
|
@ -8,11 +8,8 @@
|
|||
/* The memory allocation routines offered in this file are:
|
||||
|
||||
char *Srealloc(ptr, n) : reallocate buffer to n bytes
|
||||
|
||||
This file imports routines from "system".
|
||||
*/
|
||||
|
||||
#include <system.h>
|
||||
#include "in_all.h"
|
||||
#include "alloc.h"
|
||||
|
||||
|
|
|
@ -85,6 +85,8 @@ These last two routines are best used in a macro.
|
|||
~em/modules/h/alloc.h
|
||||
~em/modules/lib/liballoc.a
|
||||
.fi
|
||||
.SH "MODULES USED"
|
||||
system(3)
|
||||
.SH "SEE ALSO"
|
||||
malloc(3)
|
||||
.SH DIAGNOSTICS
|
||||
|
|
Loading…
Reference in a new issue