]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/read-only-relocs/test_bind.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / read-only-relocs / test_bind.c
diff --git a/unit-tests/test-cases/read-only-relocs/test_bind.c b/unit-tests/test-cases/read-only-relocs/test_bind.c
new file mode 100644 (file)
index 0000000..8ec6b8d
--- /dev/null
@@ -0,0 +1,10 @@
+
+extern int b;
+extern void func();
+
+int test_bind() 
+{ 
+       func();
+       return b; 
+}
+