Fix test compilation errors and max

This commit is contained in:
Jaakko Haakana 2025-07-26 15:53:24 +03:00
parent 44d74b285e
commit 9e44de269c
8 changed files with 13 additions and 3 deletions

5
test/emul/Arduino.cpp Normal file
View file

@ -0,0 +1,5 @@
#include "Arduino.h"
int max(int a, int b) {
return (a > b) ? a : b;
}