summaryrefslogtreecommitdiff
path: root/sys/include/libc.h
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-01-20 00:09:53 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-01-20 00:09:53 +0100
commitb99ecee6cd8c7c9fce1ff2cfa56d5a6807a0fc7c (patch)
tree079987ed419a70c28f5c3e5df9580cba9ca9d368 /sys/include/libc.h
parent43ae5531953f65860c5c6e72ac5218aa3a235bbf (diff)
malloc: change malloc and realloc tag types to uintptr
Diffstat (limited to 'sys/include/libc.h')
-rw-r--r--sys/include/libc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/include/libc.h b/sys/include/libc.h
index 1300d46d5..ba18303a3 100644
--- a/sys/include/libc.h
+++ b/sys/include/libc.h
@@ -97,10 +97,10 @@ extern ulong msize(void*);
extern void* mallocalign(ulong, ulong, long, ulong);
extern void* calloc(ulong, ulong);
extern void* realloc(void*, ulong);
-extern void setmalloctag(void*, ulong);
-extern void setrealloctag(void*, ulong);
-extern ulong getmalloctag(void*);
-extern ulong getrealloctag(void*);
+extern void setmalloctag(void*, uintptr);
+extern void setrealloctag(void*, uintptr);
+extern uintptr getmalloctag(void*);
+extern uintptr getrealloctag(void*);
extern void* malloctopoolblock(void*);
/*