]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/text-relocs/bar.c
dyld-195.6.tar.gz
[apple/dyld.git] / unit-tests / test-cases / text-relocs / bar.c
index acf643ca33131b2a39b42bf0a43cd38d630a01dc..a87566e9458db5c88c7b6faec97a1775de726b9e 100644 (file)
 #include <stdlib.h> // exit(), EXIT_SUCCESS
 #include <stdbool.h>
 
+int y = 0;
+
 static int x = 0;
 
 int getx() { return x; }
 void setx(int a) { x = a; }
 
+void bar()
+{
+       printf("hello\n");
+}