aboutsummaryrefslogtreecommitdiff
path: root/arclib/stdlib.h
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2006-11-18 23:48:07 +0100
committerGuido Guenther <agx@bogon.sigxcpu.org>2006-11-18 23:48:07 +0100
commitd1e063beb43e595680c65e3804d1f8ddff53373b (patch)
treef7256dfe1b807920270ec5113df6f6e4abf1ed0f /arclib/stdlib.h
Imported Debian version 0.3.8.80.3.8.8
Diffstat (limited to 'arclib/stdlib.h')
-rw-r--r--arclib/stdlib.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/arclib/stdlib.h b/arclib/stdlib.h
new file mode 100644
index 0000000..7fb829f
--- /dev/null
+++ b/arclib/stdlib.h
@@ -0,0 +1,16 @@
+/*
+ * Copyright 1999 Silicon Graphics, Inc.
+ */
+#ifndef _STDLIB_H_
+#define _STDLIB_H_
+
+#include "stddef.h"
+#include "types.h"
+
+extern void *malloc(size_t size);
+extern void free(void *ptr);
+extern void *realloc(void *ptr, size_t size);
+
+extern void arclib_malloc_add(ULONG start, ULONG size);
+
+#endif /* _STDLIB_H_ */