Ken Van Hoeylandt 7e0bd90e73 PR feedback
2026-01-30 23:40:42 +01:00

23 lines
347 B
C++

#include <tactility/module.h>
extern "C" {
static error_t start() {
/* NO-OP for now */
return ERROR_NONE;
}
static error_t stop() {
/* NO-OP for now */
return ERROR_NONE;
}
// The name must be exactly "platform_module"
struct Module platform_module = {
.name = "POSIX Platform",
.start = start,
.stop = stop
};
}