From: Jim Meyering Date: Fri, 16 Sep 2005 07:33:36 +0000 (+0000) Subject: Include fprintftime.h. X-Git-Tag: v5.90~210 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d514933c67426ca4c5f179035baa852495fdd9e3;p=thirdparty%2Fcoreutils.git Include fprintftime.h. Don't include strftime.h or xanstrftime.h -- no longer needed. (show_date): Use fprintftime rather than xanstrftime. --- diff --git a/src/date.c b/src/date.c index 58fe96ea54..ebe63ac397 100644 --- a/src/date.c +++ b/src/date.c @@ -33,8 +33,7 @@ #include "inttostr.h" #include "posixtm.h" #include "quote.h" -#include "strftime.h" -#include "xanstrftime.h" +#include "fprintftime.h" /* The official name of this program (e.g., no `g' prefix). */ #define PROGRAM_NAME "date" @@ -549,16 +548,12 @@ show_date (const char *format, struct timespec when) } { - char *out; - if (format == rfc_2822_format) setlocale (LC_TIME, "C"); - out = xanstrftime (format, tm, 0, when.tv_nsec); + fprintftime (stdout, format, tm, 0, when.tv_nsec); + fputc ('\n', stdout); if (format == rfc_2822_format) setlocale (LC_TIME, ""); - - puts (out); - free (out); } return true; }