Really revert to the original version.

This commit is contained in:
joerg 2014-08-26 17:13:42 +00:00
parent 7c92a4b3cd
commit 6c18385369

View File

@ -49,9 +49,4 @@ int (*resolve_ifunc(void))(void)
return e && strcmp(e, "1") == 0 ? ifunc2 : ifunc1;
}
int ifunc(void);
int
ifunc(void) {
const char *e = getenv("USE_IFUNC2");
return e && strcmp(e, "1") == 0 ? ifunc2() : ifunc1();
}
__ifunc(ifunc, resolve_ifunc);