From 7eda43768a7ab500cb230c6969d0d9693e986e50 Mon Sep 17 00:00:00 2001 From: Petro Karashchenko Date: Fri, 22 Apr 2022 14:32:15 +0200 Subject: [PATCH] interpreters/ficl: add double include guard to nuttx.h Signed-off-by: Petro Karashchenko --- 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 */