mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 01:16:25 +00:00
e062b98088
find . -type f -exec sed -i '${/^[[:space:]]*$/d;}' {} \+
12 lines
244 B
C
12 lines
244 B
C
#ifndef __GCUTIL_H__
|
|
#define __GCUTIL_H__
|
|
|
|
#ifndef ATTRIBUTE_ALIGN
|
|
# define ATTRIBUTE_ALIGN(v) __attribute__((aligned(v)))
|
|
#endif
|
|
#ifndef ATTRIBUTE_PACKED
|
|
# define ATTRIBUTE_PACKED __attribute__((packed))
|
|
#endif
|
|
|
|
#endif /* _GCUTIL_H */
|