1#include "libcflat.h"
23intmain(intargc, char **argv)
4{
5/*
6 * scripts/runtime.bash uses this test as a canary to determine if the
7 * basic setup is functional. Print a magic string to let runtime.bash
8 * know that all is well.
9 */10printf("Dummy Hello World!");
11return 0;
12}
13