diff options
Diffstat (limited to 'Tests/Visibility/shared.c')
-rw-r--r-- | Tests/Visibility/shared.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/Visibility/shared.c b/Tests/Visibility/shared.c index bb94976..7a07939 100644 --- a/Tests/Visibility/shared.c +++ b/Tests/Visibility/shared.c @@ -1,3 +1,6 @@ extern int not_hidden(void); -int shared(void) { return not_hidden(); } +int shared(void) +{ + return not_hidden(); +} |