mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
14 lines
388 B
C
14 lines
388 B
C
|
#pragma once
|
||
|
|
||
|
#if defined(__GNUG__)
|
||
|
#include <math.h>
|
||
|
#define _fpclass(x) fpclassify(x)
|
||
|
#define __forceinline __attribute__((always_inline))
|
||
|
#define _byteswap_ushort(x) __builtin_bswap16(x)
|
||
|
#define _byteswap_ulong(x) __builtin_bswap32(x)
|
||
|
#define _byteswap_uint64(x) __builtin_bswap64(x)
|
||
|
#define Sleep(x) usleep(x * 1000)
|
||
|
#define mkdir(x) mkdir(x, 0777)
|
||
|
#define INFINITE 0xFFFFFFFF
|
||
|
#endif
|