From c80f61a1a7dea35e6a64831557f3960fad344339 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 10 Oct 2018 01:49:37 +0300 Subject: [PATCH] libc: minimal: Add dummy sys/stat.h [REVERTME] Some third-party components include this file without really needing any symbols from it. Presence of this file allows to build them against minimal libc, whereas previously they forced Newlib. Signed-off-by: Paul Sokolovsky --- lib/libc/minimal/include/sys/stat.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/libc/minimal/include/sys/stat.h diff --git a/lib/libc/minimal/include/sys/stat.h b/lib/libc/minimal/include/sys/stat.h new file mode 100644 index 00000000000..4636b540050 --- /dev/null +++ b/lib/libc/minimal/include/sys/stat.h @@ -0,0 +1,9 @@ +/* + * Copyright (c) 2018 Linaro Limited + * + * SPDX-License-Identifier: Apache-2.0 + */ + + +/* Dummy sys/stat.h to fulfill the requirements of certain libraries. + */