]> 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 9224e9290fc22d3b29717e0cfa2eaf50c0042962..a87566e9458db5c88c7b6faec97a1775de726b9e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2005-2007 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
 #include <stdlib.h> // exit(), EXIT_SUCCESS
 #include <stdbool.h>
 
-extern int* foo;
+int y = 0;
 
-bool testBar()
-{
-       return (*foo == 10);
-}
+static int x = 0;
 
-int bar = 10;
+int getx() { return x; }
+void setx(int a) { x = a; }
 
+void bar()
+{
+       printf("hello\n");
+}