Add a stub malloc.h.
authorDavid Given <dg@cowlark.com>
Wed, 19 Jun 2013 23:15:14 +0000 (00:15 +0100)
committerDavid Given <dg@cowlark.com>
Wed, 19 Jun 2013 23:15:14 +0000 (00:15 +0100)
--HG--
branch : dtrg-videocore
rename : lang/cem/libcc.ansi/headers/stdlib.h => lang/cem/libcc.ansi/headers/malloc.h

lang/cem/libcc.ansi/build.mk
lang/cem/libcc.ansi/headers/malloc.h [new file with mode: 0644]

index 5987de9..d430031 100644 (file)
@@ -16,6 +16,7 @@ define build-libcc-ansi-headers-impl
                float.h \
                limits.h \
                math.h \
+               malloc.h \
                setjmp.h \
                signal.h \
                stdarg.h \
diff --git a/lang/cem/libcc.ansi/headers/malloc.h b/lang/cem/libcc.ansi/headers/malloc.h
new file mode 100644 (file)
index 0000000..73cef55
--- /dev/null
@@ -0,0 +1,14 @@
+/*
+ * stdlib.h - standard library
+ *
+ * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
+ * See the copyright notice in the ACK home directory, in the file "Copyright".
+ */
+/* $Id$ */
+
+#ifndef _MALLOC_H
+#define        _MALLOC_H
+
+#include <stdlib.h>
+
+#endif