Skip to content

Commit

Permalink
Merge pull request nasa#1180 from Shefali321/contribution-branch
Browse files Browse the repository at this point in the history
Fix nasa#1139, Remove extern in stub prototypes
  • Loading branch information
astrogeco committed Nov 3, 2021
2 parents 84d76c2 + b16c6f1 commit 56ad768
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ut_assert/scripts/generate_stubs.pl
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@
if ($fileapi->{$funcname}->{variadic}) {
$args .= ", va_list";
}
print OUT "extern void ".$handler_func->{$funcname}."($args);\n";
print OUT "void ".$handler_func->{$funcname}."($args);\n";
}
}

Expand Down

0 comments on commit 56ad768

Please sign in to comment.