diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 14:33:09 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-05-13 14:33:09 -0500 |
commit | 0d7386c7529dc106dc12827ce0f2dee91c3945c2 (patch) | |
tree | 3070f83eb7f8990d61e21236caa3137203d2b5fa /src | |
parent | Add versioning to CMake and Meson (diff) | |
download | locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.gz locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.bz2 locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.lz locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.xz locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.zst locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.zip |
Add a C file to make C compilers actually build this into a shared object
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/locusts.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/locusts.c b/src/locusts.c new file mode 100644 index 0000000..4f21f0c --- /dev/null +++ b/src/locusts.c @@ -0,0 +1,3 @@ +#include "locusts.h" + +void introduce_locusts(void) { return; }
\ No newline at end of file |