mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
13 lines
321 B
C
13 lines
321 B
C
#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))
|
|
#define NO_REORDER __attribute__((no_reorder))
|
|
|
|
#endif
|