Fixed bug in yasm_mac.inc to allow global functions to have labels without __g prefix

This commit is contained in:
jasonmartin 2008-07-22 17:19:00 +00:00
parent 8a07cb7512
commit 6b1b3f9a15

View File

@ -24,5 +24,7 @@ _%1:
%macro GLOBAL_FUNC 1
G_EXPORT __g%1
G_EXPORT %1
G_LABEL __g%1
G_LABEL %1
%endmacro