#include MPERS_DEFS
+#include "xstring.h"
+
#ifndef UTIME_NOW
# define UTIME_NOW ((1l << 30) - 1l)
#endif
strcpy(buf, "NULL");
} else if (!verbose(tcp) || (exiting(tcp) && syserror(tcp)) ||
umove(tcp, addr, &t)) {
- snprintf(buf, sizeof(buf), "%#" PRI_klx, addr);
+ xsprintf(buf, "%#" PRI_klx, addr);
} else {
- snprintf(buf, sizeof(buf), timespec_fmt,
+ xsprintf(buf, timespec_fmt,
(long long) t.tv_sec,
zero_extend_signed_to_ull(t.tv_nsec));
}