Skip to content

Commit

Permalink
Merge pull request #75 from gjtorikian/updates
Browse files Browse the repository at this point in the history
Update to account for C prototype changes
  • Loading branch information
gjtorikian authored Jul 21, 2023
2 parents 09a0fd6 + 2e75267 commit 43f9e36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ CMakeFiles
CMakeCache.txt
Release
Win32

Testing/
4 changes: 2 additions & 2 deletions tests/clar.c
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ clar_test_init(int argc, char **argv)
}

int
clar_test_run()
clar_test_run(void)
{
if (_clar.argc > 1)
clar_parse_args(_clar.argc, _clar.argv);
Expand All @@ -426,7 +426,7 @@ clar_test_run()
}

void
clar_test_shutdown()
clar_test_shutdown(void)
{
clar_print_shutdown(
_clar.tests_ran,
Expand Down

0 comments on commit 43f9e36

Please sign in to comment.