mirror of
https://github.com/pret/pokediamond.git
synced 2026-03-21 17:54:29 -05:00
11 lines
329 B
C
11 lines
329 B
C
#ifndef GUARD_FUNCTION_TARGET_H
|
|
#define GUARD_FUNCTION_TARGET_H
|
|
|
|
#define ENUMS_ALWAYS_INT_ON _Pragma("enumsalwaysint on")
|
|
#define ENUMS_ALWAYS_INT_OFF _Pragma("enumsalwaysint off")
|
|
#define ENUMS_ALWAYS_INT_RESET _Pragma("enumsalwaysint reset")
|
|
|
|
#define ALIGN(num) __attribute__ ((aligned(num)))
|
|
|
|
#endif //GUARD_FUNCTION_TARGET_H
|