forked from Imagelibrary/rtems
score: Remove superfluous semicolon
This avoids warnings like this:
warning: ISO C does not allow extra ';' outside of a function [-Wpedantic]
RTEMS_DECLARE_GLOBAL_SYMBOL( abc );
^
Update #3459.
This commit is contained in:
@@ -257,7 +257,7 @@
|
|||||||
* The name must be a valid designator.
|
* The name must be a valid designator.
|
||||||
*/
|
*/
|
||||||
#define RTEMS_DECLARE_GLOBAL_SYMBOL( _name ) \
|
#define RTEMS_DECLARE_GLOBAL_SYMBOL( _name ) \
|
||||||
extern char _name[];
|
extern char _name[]
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Defines a global symbol with the specified name and value.
|
* @brief Defines a global symbol with the specified name and value.
|
||||||
|
|||||||
Reference in New Issue
Block a user