Here is a patch to remove the ifdef's and fix klibc instead.
#define KLIBC_FIXUPS_H
+#define WTERMSIG(status) ((status) & 0x7f)
+#define WEXITSTATUS(status) (((status) & 0xff00) >> 8)
+#define WIFEXITED(status) (WTERMSIG(status) == 0)
+
+
struct group {
char *gr_name; /* group name */
char *gr_passwd; /* group password */
retval = -1;
}
-#ifndef __KLIBC__
if (!WIFEXITED(status) || (WEXITSTATUS(status) != 0)) {
dbg("callout program status 0x%x", status);
retval = -1;
}
-#endif
}
return retval;
}