]> git.saurik.com Git - apple/dyld.git/blobdiff - unit-tests/test-cases/interpose-basic/mystrdup.c
dyld-750.5.tar.gz
[apple/dyld.git] / unit-tests / test-cases / interpose-basic / mystrdup.c
index 077a8a2fcd2f2a99b756643eef01a6aed6a47cc3..18041ac430966276737d467443ce6de327744a14 100644 (file)
@@ -26,7 +26,7 @@
 
 char* mystrdup(const char* in)
 {
-       return "hello";
+       return strdup("hello");
 }
 
 DYLD_INTERPOSE(mystrdup, strdup)