diff options
Diffstat (limited to 'Tests/Visibility/shared.c')
-rw-r--r-- | Tests/Visibility/shared.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/Visibility/shared.c b/Tests/Visibility/shared.c new file mode 100644 index 0000000..bb94976 --- /dev/null +++ b/Tests/Visibility/shared.c @@ -0,0 +1,3 @@ +extern int not_hidden(void); + +int shared(void) { return not_hidden(); } |