summaryrefslogtreecommitdiff
path: root/src/lib.c
diff options
context:
space:
mode:
authormaddaat <git@maddaat.org>2026-04-10 18:20:08 +0400
committermaddaat <git@maddaat.org>2026-04-10 18:20:08 +0400
commit06ec4982b1d3be9582d1be8cc93f7285ca948a05 (patch)
tree041bd798c864c5998dfae39af7156b399641afd4 /src/lib.c
downloadautotools-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
Initial commitHEADmaster
Diffstat (limited to 'src/lib.c')
-rw-r--r--src/lib.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib.c b/src/lib.c
new file mode 100644
index 0000000..959b5d5
--- /dev/null
+++ b/src/lib.c
@@ -0,0 +1,12 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <foobar.h>
+
+#include "common.h"
+
+int foobar(const int a, const int b)
+{
+ return foobar_internal(a, b);
+}