mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
core/lib: hide _XTSTR()
from doxygen
This commit is contained in:
parent
003d64dd6c
commit
d248b2d785
@ -31,8 +31,10 @@ extern "C" {
|
||||
* @brief A macro to return the string respresentation of x
|
||||
*/
|
||||
#ifndef XTSTR
|
||||
#define _XTSTR(x) # x
|
||||
#define XTSTR(x) _XTSTR(x)
|
||||
# ifndef DOXYGEN
|
||||
# define _XTSTR(x) # x
|
||||
# endif /* DOXYGEN */
|
||||
# define XTSTR(x) _XTSTR(x)
|
||||
#endif /* XTSTR */
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
Loading…
Reference in New Issue
Block a user