aboutsummaryrefslogtreecommitdiff
path: root/test/stubbed/util
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2026-03-01 10:35:53 +0530
committerAkshay Nair <phenax5@gmail.com>2026-03-01 10:35:53 +0530
commit96b074de6104161c62e09b2b1a725316dbf1c5f3 (patch)
tree0ff68fd7fdf611365a20f718664818f27437e630 /test/stubbed/util
parent18268280dc6c0bd44035b53655ae43e9c88245bd (diff)
downloaddaft-watch-96b074de6104161c62e09b2b1a725316dbf1c5f3.tar.gz
daft-watch-96b074de6104161c62e09b2b1a725316dbf1c5f3.zip
Add tests for mode state
Diffstat (limited to '')
-rw-r--r--test/stubbed/util/delay.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/stubbed/util/delay.h b/test/stubbed/util/delay.h
index 3954609..6167586 100644
--- a/test/stubbed/util/delay.h
+++ b/test/stubbed/util/delay.h
@@ -3,5 +3,5 @@
#include <unistd.h>
-static void _delay_ms(int ms) { usleep(ms * 1000); }
+inline void _delay_ms(int ms) { usleep(ms * 1000); }
#endif