aboutsummaryrefslogtreecommitdiff
path: root/common/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/stdlib.h')
-rw-r--r--common/stdlib.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/common/stdlib.h b/common/stdlib.h
new file mode 100644
index 0000000..8bd1e8b
--- /dev/null
+++ b/common/stdlib.h
@@ -0,0 +1,15 @@
+/*
+ * Copyright 1999 Silicon Graphics, Inc.
+ */
+#ifndef _STDLIB_H_
+#define _STDLIB_H_
+
+#include "stddef.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(unsigned long start, unsigned long size);
+
+#endif /* _STDLIB_H_ */