/** * A very small c code file. Because this file does not have a main * it must be compiled using trhe -c flag * * gcc -c s1.c * * @author gtowell * Created: April 6, 2021 * **/ #include "s1.h" /** * Just return 42. * @return 42 * **/ int doS1() { return 42; }