mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-01-06 00:11:55 -05:00
9 lines
239 B
C
9 lines
239 B
C
#pragma once
|
|
|
|
# if defined(__GNUC__)
|
|
#include <stdlib.h> // for posix_memalign
|
|
#define NALIGN(x) __attribute__((aligned(x)))
|
|
#elif defined(_MSC_VER)
|
|
#include <malloc.h> // for _aligned_malloc
|
|
#define NALIGN(x) __declspec (align(x))
|
|
#endif
|