Implement (MSEC) using usleep() (#125)
[debian/pforth] / csrc / pf_io_none.c
index 52f92b00075d30510b20dd6c872237ebc0c66d06..2aa0f7356a6548e2a208ead9006d8093e9d3b5f1 100644 (file)
@@ -49,4 +49,10 @@ void sdTerminalInit( void )
 void sdTerminalTerm( void )
 {
 }
+
+void sdSleepMillis(cell_t /* msec */)
+{
+    // TODO Call some platform specific sleep function here.
+    return PF_ERR_NOT_SUPPORTED;
+}
 #endif