From 8477db976fcc5b6caacf1a0c34ba4f6176cbed03 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Tue, 8 Dec 2015 17:10:01 +0100 Subject: [PATCH] add dummy header to be compatible to LwIP --- hermit/include/stdlib.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 hermit/include/stdlib.h diff --git a/hermit/include/stdlib.h b/hermit/include/stdlib.h new file mode 100755 index 000000000..7c43bb5e8 --- /dev/null +++ b/hermit/include/stdlib.h @@ -0,0 +1,14 @@ +#ifndef __ANSI_STDLIB_H__ +#define __ANSI_STDLIB_H__ + +#include + +#ifdef __cplusplus +extern "C" { +#endif + +#ifdef __cplusplus +} +#endif + +#endif