summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@chromium.org>2021-08-30 17:42:00 +0000
committerCommit Bot <commit-bot@chromium.org>2021-08-31 16:56:01 +0000
commit5fa669005c3779b7310bf6bfe43f741a3d8ae871 (patch)
tree076327c058f14bf3dcfea811ca16fc0f1fc3c8e0 /builtin
parent5a1a08381adff5caee99bdfea8fcb7ca30b31734 (diff)
downloadchrome-ec-5fa669005c3779b7310bf6bfe43f741a3d8ae871.tar.gz
builtin: Add math.h
Add a "math.h" to "builtin" and rename "math.h" in the "core" directories to "fpu.h". "builtin" is the directory containing headers that mirror those in the standard library and is used for device builds. The host builds exclude the "builtin" directory and use the standard library. Without this change, building host tools such as "ectool" and attempting to include "math.h" would result in incorrectly picking up the "math.h" from the device "core" directory, not the standard library version. BRANCH=none BUG=b:144959033 TEST=make buildall Signed-off-by: Tom Hughes <tomhughes@chromium.org> Change-Id: Id6b2df42cb0ff5ec2cfc07aa8f29861da6804bdf Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3130625 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/math.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/builtin/math.h b/builtin/math.h
new file mode 100644
index 0000000000..30a8849bd6
--- /dev/null
+++ b/builtin/math.h
@@ -0,0 +1,11 @@
+/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef __CROS_EC_MATH_H__
+#define __CROS_EC_MATH_H__
+
+#include "fpu.h"
+
+#endif /* __CROS_EC_MATH_H__ */