tests: Remove erroneous # before extern "C"

A few test header files have C++ guards around them, but are incorrect.
Those files had a leading `#` placed before `extern`, which is
incorrect.  This commit simply removes those leading `#` characters.

Signed-off-by: Brooks Prumo <brooks@prumo.org>
This commit is contained in:
Brooks Prumo 2020-02-06 09:43:53 -06:00 committed by Anas Nashif
commit e426c0c4e1
4 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@
#include <errno.h>
#ifdef __cplusplus
#extern "C" {
extern "C" {
#endif
#define TEST_FCB_FLASH_AREA_ID DT_FLASH_AREA_IMAGE_1_ID

View file

@ -16,7 +16,7 @@
#include <storage/flash_map.h>
#ifdef __cplusplus
#extern "C" {
extern "C" {
#endif
#define SETTINGS_TEST_FCB_VAL_STR_CNT 64

View file

@ -15,7 +15,7 @@
#include "settings/settings.h"
#ifdef __cplusplus
#extern "C" {
extern "C" {
#endif
extern u8_t val8;

View file

@ -14,7 +14,7 @@
#include "settings/settings.h"
#ifdef __cplusplus
#extern "C" {
extern "C" {
#endif
#define SETTINGS_TEST_NVS_VAL_STR_CNT 64