From: Mike D. Lowis Date: Thu, 31 May 2012 13:56:00 +0000 (-0400) Subject: Commit dumm source files X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=f5ebd463e66b4ae161aab4a931700bf3c9042a50;p=projs%2Fopts.git Commit dumm source files --- diff --git a/source/opts.c b/source/opts.c new file mode 100644 index 0000000..17bc70f --- /dev/null +++ b/source/opts.c @@ -0,0 +1,6 @@ +#include "opts.h" + +int foo(void) +{ + return 42; +} diff --git a/source/opts.h b/source/opts.h new file mode 100644 index 0000000..513dd89 --- /dev/null +++ b/source/opts.h @@ -0,0 +1,6 @@ +#ifndef OPTS_H +#define OPTS_H + +int foo(void); + +#endif