Patched to stop -ansi bitching.
This commit is contained in:
parent
3dc68c4b4e
commit
b1ee823a8c
|
@ -40,26 +40,26 @@
|
||||||
#define PHYSFS_Swap32 __arch__swab32
|
#define PHYSFS_Swap32 __arch__swab32
|
||||||
#endif
|
#endif
|
||||||
#endif /* linux */
|
#endif /* linux */
|
||||||
|
|
||||||
#if (defined _MSC_VER)
|
#if (defined _MSC_VER)
|
||||||
#define inline __inline
|
#define __inline__ __inline
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef PHYSFS_Swap16
|
#ifndef PHYSFS_Swap16
|
||||||
static inline PHYSFS_uint16 PHYSFS_Swap16(PHYSFS_uint16 D)
|
static __inline__ PHYSFS_uint16 PHYSFS_Swap16(PHYSFS_uint16 D)
|
||||||
{
|
{
|
||||||
return((D<<8)|(D>>8));
|
return((D<<8)|(D>>8));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_Swap32
|
#ifndef PHYSFS_Swap32
|
||||||
static inline PHYSFS_uint32 PHYSFS_Swap32(PHYSFS_uint32 D)
|
static __inline__ PHYSFS_uint32 PHYSFS_Swap32(PHYSFS_uint32 D)
|
||||||
{
|
{
|
||||||
return((D<<24)|((D<<8)&0x00FF0000)|((D>>8)&0x0000FF00)|(D>>24));
|
return((D<<24)|((D<<8)&0x00FF0000)|((D>>8)&0x0000FF00)|(D>>24));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#ifndef PHYSFS_NO_64BIT_SUPPORT
|
#ifndef PHYSFS_NO_64BIT_SUPPORT
|
||||||
#ifndef PHYSFS_Swap64
|
#ifndef PHYSFS_Swap64
|
||||||
static inline PHYSFS_uint64 PHYSFS_Swap64(PHYSFS_uint64 val) {
|
static __inline__ PHYSFS_uint64 PHYSFS_Swap64(PHYSFS_uint64 val) {
|
||||||
PHYSFS_uint32 hi, lo;
|
PHYSFS_uint32 hi, lo;
|
||||||
|
|
||||||
/* Separate into high and low 32-bit values and swap them */
|
/* Separate into high and low 32-bit values and swap them */
|
||||||
|
|
Loading…
Reference in New Issue