From 20fa6816de9b7b1ed1fbbca315301dca24d67766 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 13 Jan 2024 15:19:57 -0500 Subject: [PATCH] Clean up some simple warnings in Clang. --- src/Cytoplasm.c | 6 +++--- src/include/Cytoplasm.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Cytoplasm.c b/src/Cytoplasm.c index 43ff294..8c53f84 100644 --- a/src/Cytoplasm.c +++ b/src/Cytoplasm.c @@ -24,12 +24,12 @@ #include -char *CytoplasmGetName() +char *CytoplasmGetName(void) { return LIB_NAME; } -char *CytoplasmGetVersion() +char *CytoplasmGetVersion(void) { return LIB_VERSION; -} \ No newline at end of file +} diff --git a/src/include/Cytoplasm.h b/src/include/Cytoplasm.h index f965f2f..3697194 100644 --- a/src/include/Cytoplasm.h +++ b/src/include/Cytoplasm.h @@ -57,4 +57,4 @@ extern char * CytoplasmGetName(void); */ extern char * CytoplasmGetVersion(void); -#endif /* CYTOPLASM_CYTOPLASM_H */ \ No newline at end of file +#endif /* CYTOPLASM_CYTOPLASM_H */