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:
YAMAMOTO Takashi 2020-01-30 01:31:38 +09:00 committed by Xiang Xiao
parent 6c4b672a08
commit 2983fcdeb7
1 changed files with 2 additions and 2 deletions

View File

@ -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