From: David Given Date: Wed, 19 Jun 2013 23:15:14 +0000 (+0100) Subject: Add a stub malloc.h. X-Git-Tag: release-6-0-pre-5~10^2~11 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=55be35a68a9754a4c5c34ae2ff18ff1005b75d84;p=ack.git Add a stub malloc.h. --HG-- branch : dtrg-videocore rename : lang/cem/libcc.ansi/headers/stdlib.h => lang/cem/libcc.ansi/headers/malloc.h --- diff --git a/lang/cem/libcc.ansi/build.mk b/lang/cem/libcc.ansi/build.mk index 5987de9e3..d4300311d 100644 --- a/lang/cem/libcc.ansi/build.mk +++ b/lang/cem/libcc.ansi/build.mk @@ -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 index 000000000..73cef551e --- /dev/null +++ b/lang/cem/libcc.ansi/headers/malloc.h @@ -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 + +#endif