mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 16:50:55 +08:00
Missing EXTERN on global variable declaration
This commit is contained in:
committed by
Gregory Nutt
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
|
||||
|
||||
Reference in New Issue
Block a user