summaryrefslogtreecommitdiff
path: root/sys/src/cmd/2l/compat.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-05-02 05:17:40 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2014-05-02 05:17:40 +0200
commitbd3e9e4b7c08bb04ad0800629c478d9d359b00da (patch)
tree095ba2550eebb5f64be6a2abf8140507c44522b7 /sys/src/cmd/2l/compat.c
parentf7f3e4780a5e0733f8699b7722811fb0887af8f1 (diff)
1l, 2l, 7l, kl, vl: add missing setmalloctag() dummy in compat.c
Diffstat (limited to 'sys/src/cmd/2l/compat.c')
-rw-r--r--sys/src/cmd/2l/compat.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/src/cmd/2l/compat.c b/sys/src/cmd/2l/compat.c
index b169039a3..1d9f89e43 100644
--- a/sys/src/cmd/2l/compat.c
+++ b/sys/src/cmd/2l/compat.c
@@ -48,3 +48,9 @@ mysbrk(ulong size)
{
return sbrk(size);
}
+
+void
+setmalloctag(void *v, uintptr pc)
+{
+ USED(v, pc);
+}