mirror of
https://github.com/libretro/RetroArch
synced 2025-03-28 19:20:35 +00:00
Fix warnings re: redefining ALIGNED
This commit is contained in:
parent
8321506b39
commit
b1c1eae907
@ -24,11 +24,13 @@
|
||||
|
||||
// 4 source echo.
|
||||
|
||||
#ifndef ALIGNED
|
||||
#ifdef __GNUC__
|
||||
#define ALIGNED __attribute__((aligned(16)))
|
||||
#else
|
||||
#define ALIGNED
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef min
|
||||
#define min(a, b) (((a) < (b)) ? (a) : (b))
|
||||
|
@ -31,11 +31,13 @@
|
||||
#define M_PI 3.1415926535897932384626433832795
|
||||
#endif
|
||||
|
||||
#ifndef ALIGNED
|
||||
#ifdef __GNUC__
|
||||
#define ALIGNED __attribute__((aligned(16)));
|
||||
#else
|
||||
#define ALIGNED
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define sqr(a) ((a) * (a))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user