diff options
author | Nick Brassel <nick@tzarc.org> | 2023-11-22 12:08:52 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-22 12:08:52 +1100 |
commit | 3a5e4253fcfe840170df5ae1ce623ab72c942d70 (patch) | |
tree | 6f98ccd892d889114eca3dd8599b6f03dfdada0a /quantum | |
parent | 0fcd13f55225c4545d828e1898c219ef3cae578f (diff) |
Add simpler method for relocating functions to RAM. (#21804)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/util.h b/quantum/util.h index 21e3487b28..94d9f22317 100644 --- a/quantum/util.h +++ b/quantum/util.h @@ -50,3 +50,7 @@ #if !defined(PACKED) # define PACKED __attribute__((__packed__)) #endif + +#if __has_include("_util.h") +# include "_util.h" /* Include the platform's _util.h */ +#endif |