From 63743cbd8c3ca7d89d798d8cbfceabccd0904c0a Mon Sep 17 00:00:00 2001 From: Kris Kennaway Date: Thu, 28 Sep 2000 02:54:44 +0000 Subject: [PATCH] No need to work around SCCS variable expansion any more. --- bin/ps/print.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/bin/ps/print.c b/bin/ps/print.c index 7f7898f7669..600a639b921 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -366,13 +366,9 @@ started(k, ve) if (!now) (void)time(&now); if (now - k->ki_u.u_start.tv_sec < 24 * 3600) { - /* I *hate* SCCS... */ - static char fmt[] = __CONCAT("%l:%", "M%p"); - (void)strftime(buf, sizeof(buf) - 1, fmt, tp); + (void)strftime(buf, sizeof(buf) - 1, "%l:%M%p", tp); } else if (now - k->ki_u.u_start.tv_sec < 7 * 86400) { - /* I *hate* SCCS... */ - static char fmt[] = __CONCAT("%a%", "I%p"); - (void)strftime(buf, sizeof(buf) - 1, fmt, tp); + (void)strftime(buf, sizeof(buf) - 1, "%a%I%p", tp); } else (void)strftime(buf, sizeof(buf) - 1, "%e%b%y", tp); (void)printf("%-*s", v->width, buf);