Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9171 → Rev 9172

/contrib/sdk/sources/SDL-1.2.2_newlib/src/hermes/common.inc
0,0 → 1,15
; Some common macros for hermes nasm code
 
%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro
 
%ifdef __OS2__
; declare segments with proper attributes for OS/2 386 builds:
SEGMENT .data CLASS=DATA ALIGN=16 USE32 FLAT
SEGMENT .text CLASS=CODE ALIGN=16 USE32 FLAT
%endif