summaryrefslogtreecommitdiff
path: root/sys/src/cmd/rc/rc.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2016-05-15 19:58:24 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2016-05-15 19:58:24 +0200
commitd0e510b29af9a1d12a507f03f352b6d39adc0ace (patch)
treefb3dcc42439e70fa6c9aad86a199d12889fa6ca6 /sys/src/cmd/rc/rc.h
parent7717051e3ce062fbdb8415e4befa5205d25e80bb (diff)
rc: remove pointless Memcpy(),Malloc(),Realloc() and efree() wrappers
Diffstat (limited to 'sys/src/cmd/rc/rc.h')
-rw-r--r--sys/src/cmd/rc/rc.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/sys/src/cmd/rc/rc.h b/sys/src/cmd/rc/rc.h
index eec0e068f..7b7b3b343 100644
--- a/sys/src/cmd/rc/rc.h
+++ b/sys/src/cmd/rc/rc.h
@@ -97,12 +97,8 @@ var *gvar[NVAR]; /* hash for globals */
#define new(type) ((type *)emalloc(sizeof(type)))
-void *Malloc(ulong);
-void *Realloc(void *, ulong);
-
void *emalloc(long);
void *erealloc(void *, long);
-void efree(void *);
char *estrdup(char*);
#define NOFILE 128 /* should come from <param.h> */