chiark
/
gitweb
/
~mdw
/
catacomb
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
configure.ac, base/asm-common.h: Check explicitly for `_' on symbols.
[catacomb]
/
base
/
asm-common.h
diff --git
a/base/asm-common.h
b/base/asm-common.h
index e8f6445c6c699d5b083ff65aab765f7b6f6444a2..44c223da15a4e1614f8ddffcf4185bdc28542ec3 100644
(file)
--- a/
base/asm-common.h
+++ b/
base/asm-common.h
@@
-1116,7
+1116,11
@@
name:
#endif
#ifndef F
-# define F(name) name
+# ifdef SYM_USCORE
+# define F(name) _##name
+# else
+# define F(name) name
+# endif
#endif
#ifndef TYPE_FUNC