Skip to content

Commit 56ad768

Browse files
committed
Merge pull request #1180 from Shefali321/contribution-branch
Fix #1139, Remove extern in stub prototypes
2 parents 84d76c2 + b16c6f1 commit 56ad768

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ut_assert/scripts/generate_stubs.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@
327327
if ($fileapi->{$funcname}->{variadic}) {
328328
$args .= ", va_list";
329329
}
330-
print OUT "extern void ".$handler_func->{$funcname}."($args);\n";
330+
print OUT "void ".$handler_func->{$funcname}."($args);\n";
331331
}
332332
}
333333

0 commit comments

Comments
 (0)