This is the only strdup instance we have, all others are xstrdup. As
strdup is _POSIX_C_SOURCE >= v200809L, which we don't require and we
don't check strdup error return here, switch to xstrdup instead. This
aligns the test with others that call xfuncs, mainly xmalloc().
This is the only
strdup
instance we have, all others arexstrdup
. Asstrdup
is_POSIX_C_SOURCE >= v200809L
, which we don't require and we don't checkstrdup
error return here, switch toxstrdup
instead. This aligns the test with others that callx
funcs, mainlyxmalloc()
.