]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/image-suffix/main.c
dyld-353.2.1.tar.gz
[apple/dyld.git] / unit-tests / test-cases / image-suffix / main.c
index 79edd75f3d536948945b9145dd93218f8f33dc27..204744edc04fadd177c9644e3aa818454fa398a3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2005-2009 Apple Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -22,6 +22,7 @@
  */
 #include <stdlib.h>
 #include <mach-o/dyld.h>
+#include <dlfcn.h>
 
 #include "test.h"
 
@@ -33,7 +34,7 @@ int main(int argc, const char* argv[])
        }
 
        uint32_t imageCount = _dyld_image_count();
-       const struct mach_header* mh = NSAddImage(argv[1], 0);
+       dlopen(argv[1], 0);
        if ( imageCount != _dyld_image_count() ) {
                FAIL("image count changed");
                return EXIT_SUCCESS;