Clean up some simple warnings in Clang.
This commit is contained in:
parent
40a9c089ee
commit
20fa6816de
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,4 +57,4 @@ extern char * CytoplasmGetName(void);
|
||||||
*/
|
*/
|
||||||
extern char * CytoplasmGetVersion(void);
|
extern char * CytoplasmGetVersion(void);
|
||||||
|
|
||||||
#endif /* CYTOPLASM_CYTOPLASM_H */
|
#endif /* CYTOPLASM_CYTOPLASM_H */
|
||||||
|
|
Loading…
Reference in a new issue