12 lines
467 B
C
12 lines
467 B
C
// Minimal DSL seed implementation for DeltaMesh MVP (toy).
|
|
#include "dsl_seed.h"
|
|
#include <stdio.h>
|
|
|
|
// Example entry point to exercise the seed artifacts without pulling external deps.
|
|
void dsl_seed_example_log(void) {
|
|
AuditLog log = { "delta_seed_initialized", 0 };
|
|
(void)log; // suppress unused warning in a tiny demo
|
|
// No-op print guarded by a macro in a real build; kept tiny to avoid side effects.
|
|
// printf("%s @ %lu\n", log.entry, log.timestamp);
|
|
}
|