/** * A little program. Think of the main method as being test code to * validate the other functions in m1. * * @author gtowell * Created: April 6, 2021 * **/ #include #include "m1.h" int dom1() { return 42; } #ifndef M1C_MAIN int main(int argc, char const *argv[]) { printf("M1 %d\n", dom1()); return 0; } #endif