From c1fe19d4c1db610692365472a90f4661e48449c1 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 9 Oct 2000 20:06:30 +0000 Subject: Bug ugly formatting update --- libc/misc/time/asctime.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libc/misc/time/asctime.c') diff --git a/libc/misc/time/asctime.c b/libc/misc/time/asctime.c index 08673cbcc..bfb1a13fc 100644 --- a/libc/misc/time/asctime.c +++ b/libc/misc/time/asctime.c @@ -3,13 +3,13 @@ extern void __asctime(); -char * -asctime(timeptr) -__const struct tm * timeptr; +char *asctime(timeptr) +__const struct tm *timeptr; { - static char timebuf[26]; + static char timebuf[26]; - if( timeptr == 0 ) return 0; - __asctime(timebuf, timeptr); - return timebuf; + if (timeptr == 0) + return 0; + __asctime(timebuf, timeptr); + return timebuf; } -- cgit v1.2.3