summaryrefslogtreecommitdiff
path: root/sys/src/cmd/rc/rc.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@rei2.9hal>2012-02-08 04:09:48 +0100
committercinap_lenrek <cinap_lenrek@rei2.9hal>2012-02-08 04:09:48 +0100
commitf2f19dd888da68f3513f43d493dfc98ca18209ce (patch)
treed2c5f1b1d034e7b0cf2e7ae7c11c15009e509dcd /sys/src/cmd/rc/rc.h
parent061d55111b677de4810fa8fd4a8f05907adaef8b (diff)
rc: change plan9 envname limit to 128, cleanup
Diffstat (limited to 'sys/src/cmd/rc/rc.h')
-rw-r--r--sys/src/cmd/rc/rc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/src/cmd/rc/rc.h b/sys/src/cmd/rc/rc.h
index 8ccdc344b..242a9b5ea 100644
--- a/sys/src/cmd/rc/rc.h
+++ b/sys/src/cmd/rc/rc.h
@@ -97,8 +97,11 @@ var *gvar[NVAR]; /* hash for globals */
#define new(type) ((type *)emalloc(sizeof(type)))
-void *emalloc(long);
void *Malloc(ulong);
+void *Realloc(void *, ulong);
+
+void *emalloc(long);
+void *erealloc(void *, long);
void efree(void *);
#define NOFILE 128 /* should come from <param.h> */