mirror of
https://github.com/apache/nuttx.git
synced 2026-08-19 04:28:21 +00:00
Fix an inverted logic in the following commit.
commit 39bd9ff670
Author: YAMAMOTO Takashi <yamamoto@midokura.com>
Date: Wed Jan 29 00:17:05 2020 +0900
sim: Prefix symbols with _ for non-ELF
Namely for Mach-O. Leave __CYGWIN__ case as it is.
This commit is contained in:
parent
6c4b672a08
commit
2983fcdeb7
1 changed files with 2 additions and 2 deletions
|
|
@ -47,9 +47,9 @@
|
|||
# define SYMBOL(s) _##s
|
||||
#else
|
||||
#ifdef __ELF__
|
||||
# define SYMBOL(s) _##s
|
||||
#else
|
||||
# define SYMBOL(s) s
|
||||
#else
|
||||
# define SYMBOL(s) _##s
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue