* src/stdbuf.c (set_LD_PRELOAD): Use the AIX specific environment
variables LDR_PRELOAD or LDR_PRELOAD64.
* NEWS: Mention the bugfix.
'sort +0.18446744073709551615R input' on 64 bit systems.
[bug introduced in coreutils-7.2]
+ stdbuf now works on AIX. Previously it would have been ineffective.
+ [bug introduced with the stdbuf program in coreutils-7.5]
+
tty now exits with status 4 with a special diagnostic if ttyname
fails even though standard input is a tty. Formerly it quietly
pretended that standard input was not a tty.
int ret;
#ifdef __APPLE__
char const *preload_env = "DYLD_INSERT_LIBRARIES";
+#elif defined _AIX
+ char const *preload_env = (sizeof (void *) < 8
+ ? "LDR_PRELOAD" : "LDR_PRELOAD64");
#else
char const *preload_env = "LD_PRELOAD";
#endif