mirror of
https://github.com/zeldaret/oot
synced 2026-05-22 22:44:26 -04:00
25b2fa4bca
* split out various macros * fix * fix2 * fix dw * libc path * fix macro * does this fix bss * fix bss
14 lines
215 B
C
14 lines
215 B
C
#ifndef AVOID_UB_H
|
|
#define AVOID_UB_H
|
|
|
|
/**
|
|
* This macro is used when the return type of a function is incorrect
|
|
*/
|
|
#ifndef AVOID_UB
|
|
#define BAD_RETURN(type) type
|
|
#else
|
|
#define BAD_RETURN(type) void
|
|
#endif
|
|
|
|
#endif
|