mirror of
https://github.com/pret/pokestadium.git
synced 2026-08-09 19:27:21 -05:00
13 lines
156 B
C
13 lines
156 B
C
#ifndef _MACROS_H_
|
|
#define _MACROS_H_
|
|
|
|
|
|
#ifndef __sgi
|
|
#define GLOBAL_ASM(...)
|
|
#endif
|
|
|
|
#define ARRAY_COUNT(arr) (s32)(sizeof(arr) / sizeof(arr[0]))
|
|
|
|
|
|
#endif
|