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
|
@ -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…
Reference in New Issue