]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/static-executable/test.c
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / static-executable / test.c
old mode 100755 (executable)
new mode 100644 (file)
index 27fe88d..57b349a
@@ -1,7 +1,10 @@
 
+int a;
+int b = 5;
+
 int foo()
 {
-       return 0;
+       return a+b;
 }
 
 
@@ -9,3 +12,5 @@ int entry()
 {
        return foo();
 }
+
+