mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
10 lines
182 B
C
10 lines
182 B
C
#ifndef __UNALIGNED_H_
|
|
#define __UNALIGNED_H_
|
|
|
|
#if defined(_MSC_VER) && !defined(_M_IX86)
|
|
#define ICSNEO_UNALIGNED(x) __unaligned x
|
|
#else
|
|
#define ICSNEO_UNALIGNED(x) x
|
|
#endif
|
|
|
|
#endif |