Clean up some simple warnings in Clang.

This commit is contained in:
Jordan Bancino 2024-01-13 15:19:57 -05:00
parent 40a9c089ee
commit 20fa6816de
2 changed files with 4 additions and 4 deletions

View file

@ -24,12 +24,12 @@
#include <Cytoplasm.h> #include <Cytoplasm.h>
char *CytoplasmGetName() char *CytoplasmGetName(void)
{ {
return LIB_NAME; return LIB_NAME;
} }
char *CytoplasmGetVersion() char *CytoplasmGetVersion(void)
{ {
return LIB_VERSION; return LIB_VERSION;
} }