pull in decomp updates for z_play (#4522)

This commit is contained in:
Archez 2024-11-07 11:52:21 -05:00 committed by GitHub
commit 4eeb01905d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 492 additions and 496 deletions

12
soh/include/attributes.h Normal file
View file

@ -0,0 +1,12 @@
#ifndef ATTRIBUTES_H
#define ATTRIBUTES_H
#if !defined(__GNUC__) && !defined(__attribute__)
#define __attribute__(x)
#endif
#define UNUSED __attribute__((unused))
#define FALLTHROUGH __attribute__((fallthrough))
#define NORETURN __attribute__((noreturn))
#endif