From 55be35a68a9754a4c5c34ae2ff18ff1005b75d84 Mon Sep 17 00:00:00 2001 From: David Given Date: Thu, 20 Jun 2013 00:15:14 +0100 Subject: [PATCH] Add a stub malloc.h. --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 | 1 + lang/cem/libcc.ansi/headers/malloc.h | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 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 -- 2.34.1