Missing EXTERN on global variable declaration

This commit is contained in:
David Sidrane 2016-06-21 10:09:09 -06:00 committed by Gregory Nutt
parent 8f0c2cdd13
commit 205a4b8498
1 changed files with 1 additions and 9 deletions

View File

@ -44,14 +44,6 @@
#include <stdbool.h>
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Types
****************************************************************************/
/****************************************************************************
* Public Data
****************************************************************************/
@ -69,7 +61,7 @@ extern "C"
/* This is the current syslog channel in use */
struct syslog_channel_s; /* Forward reference */
FAR const struct syslog_channel_s *g_syslog_channel;
EXTERN FAR const struct syslog_channel_s *g_syslog_channel;
/****************************************************************************
* Public Function Prototypes