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:
parent
052dd9bfc0
commit
55be35a68a
|
@ -16,6 +16,7 @@ define build-libcc-ansi-headers-impl
|
||||||
float.h \
|
float.h \
|
||||||
limits.h \
|
limits.h \
|
||||||
math.h \
|
math.h \
|
||||||
|
malloc.h \
|
||||||
setjmp.h \
|
setjmp.h \
|
||||||
signal.h \
|
signal.h \
|
||||||
stdarg.h \
|
stdarg.h \
|
||||||
|
|
14
lang/cem/libcc.ansi/headers/malloc.h
Normal file
14
lang/cem/libcc.ansi/headers/malloc.h
Normal 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
|
Loading…
Reference in a new issue