Add a stub malloc.h.

--HG--
branch : dtrg-videocore
rename : lang/cem/libcc.ansi/headers/stdlib.h => lang/cem/libcc.ansi/headers/malloc.h
This commit is contained in:
David Given 2013-06-20 00:15:14 +01:00
parent 052dd9bfc0
commit 55be35a68a
2 changed files with 15 additions and 0 deletions

View 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 \

View file

@ -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