interpreters/ficl: add double include guard to nuttx.h

Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
Petro Karashchenko 2022-04-22 14:32:15 +02:00 committed by Xiang Xiao
parent 473611d51d
commit 7eda43768a

View File

@ -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 */