diff options
| author | maddaat <git@maddaat.org> | 2026-04-10 18:20:08 +0400 |
|---|---|---|
| committer | maddaat <git@maddaat.org> | 2026-04-10 18:20:08 +0400 |
| commit | 06ec4982b1d3be9582d1be8cc93f7285ca948a05 (patch) | |
| tree | 041bd798c864c5998dfae39af7156b399641afd4 /src/common.c | |
| download | autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.gz autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.bz2 autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.lz autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.xz autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.tar.zst autotools-project-06ec4982b1d3be9582d1be8cc93f7285ca948a05.zip | |
Diffstat (limited to 'src/common.c')
| -rw-r--r-- | src/common.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common.c b/src/common.c new file mode 100644 index 0000000..0a5c687 --- /dev/null +++ b/src/common.c @@ -0,0 +1,10 @@ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "common.h" + +int foobar_internal(const int a, const int b) +{ + return a + b; +} |
