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 */