Whoops, these macros are needed! Putting them back.

This commit is contained in:
wbhart 2008-07-23 20:41:46 +00:00
parent 7c9a732b9f
commit 946f0f4632

View File

@ -1,3 +1,19 @@
%macro G_LABEL 1
%ifdef GSYM_PREFIX
_%1:
%else
%1:
%endif
%endmacro
%macro G_EXPORT 1
%ifdef GSYM_PREFIX
global _%1:function
%else
global %1:function
%endif
%endmacro
%macro G_EXTERN 1
%ifdef GSYM_PREFIX
extern _%1