diff options
author | Joel Challis <git@zvecr.com> | 2024-02-16 09:54:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-16 09:54:09 +0000 |
commit | 6890c1aeb82c0c2239841db57e1bd99c3a0651a5 (patch) | |
tree | bcbfd2002c60dbd7898a7e2d04aad882ee765623 | |
parent | 5233a62b20d975140f3bc4b808ca6e74a148d54c (diff) |
Workaround for `make test:all DEBUG=1` (#23047)
-rw-r--r-- | quantum/logging/debug.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/logging/debug.h b/quantum/logging/debug.h index 017f9b9181..d0590474c0 100644 --- a/quantum/logging/debug.h +++ b/quantum/logging/debug.h @@ -17,6 +17,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #pragma once +#ifndef PROTOCOL_ARM_ATSAM +# include <stdio.h> +#endif + #include <stdbool.h> #include "print.h" |