From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/run-make/raw-dylib-link-ordinal/exporter.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/run-make/raw-dylib-link-ordinal/exporter.c (limited to 'tests/run-make/raw-dylib-link-ordinal/exporter.c') diff --git a/tests/run-make/raw-dylib-link-ordinal/exporter.c b/tests/run-make/raw-dylib-link-ordinal/exporter.c new file mode 100644 index 000000000..aabf32ff1 --- /dev/null +++ b/tests/run-make/raw-dylib-link-ordinal/exporter.c @@ -0,0 +1,12 @@ +#include + +void exported_function() { + printf("exported_function\n"); +} + +int exported_variable = 0; + +void print_exported_variable() { + printf("exported_variable value: %d\n", exported_variable); + fflush(stdout); +} -- cgit v1.2.3