Changeset 513

Show
Ignore:
Timestamp:
02/21/08 23:23:08 (6 months ago)
Author:
krobillard
Message:

Made inline functions static for Mac OS 10.5.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/thune/gl/project.r

    r487 r513  
    9494 
    9595        lflags {-framework ALUT} 
     96       ;libs %alut 
     97 
    9698        lflags {-framework OpenAL} 
    9799        lflags {-framework OpenGL} 
  • trunk/thune/series.c

    r511 r513  
    780780 
    781781 
    782 inline void copyReverseC( const char* src, const char* end, char* dest ) 
     782static inline void copyReverseC( const char* src, const char* end, char* dest ) 
    783783{ 
    784784    while( src != end ) 
     
    817817 
    818818 
    819 inline void copyReverse4( const int32_t* src, const int32_t* end, 
    820                           int32_t* dest ) 
     819static inline void copyReverse4( const int32_t* src, const int32_t* end, 
     820                                 int32_t* dest ) 
    821821{ 
    822822    while( src != end ) 
     
    26962696 
    26972697 
    2698 inline int ur_toLower( int c ) 
     2698static inline int ur_toLower( int c ) 
    26992699{ 
    27002700    if( (c >= 'A') && (c <= 'Z') ) 
  • trunk/thune/thune.c

    r512 r513  
    376376 
    377377 
    378 inline int ur_isFalse( UCell* c ) 
     378static inline int ur_isFalse( UCell* c ) 
    379379{ 
    380380    return ur_is(c, UT_NONE) || (ur_is(c, UT_LOGIC) && ! ur_logic(c));