Skip to content

Commit

Permalink
fix "-Wstrict-prototypes" ("This function declaration is not a protot…
Browse files Browse the repository at this point in the history
…ype" xcode9 error message)
  • Loading branch information
vixentael committed Dec 5, 2017
1 parent 8242d5e commit b755ccc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/soter/soter.h
Expand Up @@ -53,6 +53,6 @@
* @return version string
*
*/
const char* soter_version();
const char* soter_version(void);
/**@}*/
#endif /* SOTER_H */
2 changes: 1 addition & 1 deletion src/themis/themis.h
Expand Up @@ -38,7 +38,7 @@
#include <themis/secure_session.h>
#include <themis/secure_comparator.h>

const char* themis_version();
const char* themis_version(void);

/** @} */
#endif /* THEMIS_H */
Expand Down

0 comments on commit b755ccc

Please sign in to comment.