Missing EXTERN on global variable declaration
This commit is contained in:
parent
8f0c2cdd13
commit
205a4b8498
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue