diff options
Diffstat (limited to 'test/lld/shared.c')
-rw-r--r-- | test/lld/shared.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/lld/shared.c b/test/lld/shared.c deleted file mode 100644 index fb5b93756..000000000 --- a/test/lld/shared.c +++ /dev/null @@ -1,9 +0,0 @@ -int puts(const char* str); -extern int external_var; - -void* ptr = &puts; - -int print_message() { - puts("Hello, world"); - return external_var; -} |