This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 7eda43768 interpreters/ficl: add double include guard to nuttx.h
7eda43768 is described below
commit 7eda43768a7ab500cb230c6969d0d9693e986e50
Author: Petro Karashchenko <[email protected]>
AuthorDate: Fri Apr 22 14:32:15 2022 +0200
interpreters/ficl: add double include guard to nuttx.h
Signed-off-by: Petro Karashchenko <[email protected]>
---
interpreters/ficl/src/nuttx.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/interpreters/ficl/src/nuttx.h b/interpreters/ficl/src/nuttx.h
index d6f9be32d..87887e757 100644
--- a/interpreters/ficl/src/nuttx.h
+++ b/interpreters/ficl/src/nuttx.h
@@ -18,6 +18,9 @@
*
***************************************************************************/
+#ifndef __APPS_INTERPRETERS_FICL_SRC_NUTTX_H
+#define __APPS_INTERPRETERS_FICL_SRC_NUTTX_H
+
/***************************************************************************
* Included Files
***************************************************************************/
@@ -41,3 +44,5 @@ typedef float ficlFloat;
#define FICL_PLATFORM_OS "ansi"
#define FICL_PLATFORM_ARCHITECTURE "unknown"
+
+#endif /* __APPS_INTERPRETERS_FICL_SRC_NUTTX_H */