mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-09 18:43:45 +00:00
13 lines
215 B
C
13 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
|