summaryrefslogtreecommitdiffhomepage
path: root/src/lib/lib.c
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2022-12-31 02:07:46 -0500
committerrealtradam <[email protected]>2022-12-31 02:07:46 -0500
commitbebf2cefe734d154ffaae44fb7c1bb557f2e1bfa (patch)
tree8c4abb74251e1ed67156a2f53b23380d7068cb72 /src/lib/lib.c
downloadRodeoKit-bebf2cefe734d154ffaae44fb7c1bb557f2e1bfa.tar.gz
RodeoKit-bebf2cefe734d154ffaae44fb7c1bb557f2e1bfa.zip
init
Diffstat (limited to 'src/lib/lib.c')
-rw-r--r--src/lib/lib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/lib.c b/src/lib/lib.c
new file mode 100644
index 0000000..4de4456
--- /dev/null
+++ b/src/lib/lib.c
@@ -0,0 +1,6 @@
+#include "lib.h"
+
+int add(int a, int b)
+{
+ return a + b;
+}