aboutsummaryrefslogtreecommitdiffstats
path: root/stdtime/localtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdtime/localtime.c')
-rwxr-xr-xstdtime/localtime.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdtime/localtime.c b/stdtime/localtime.c
index 1ad9bf6c9..f0b67e67e 100755
--- a/stdtime/localtime.c
+++ b/stdtime/localtime.c
@@ -1187,8 +1187,8 @@ register struct tm * const tmp;
#endif /* defined TM_GMTOFF */
}
-static char *
-ctime(timep)
+char *
+ast_ctime(timep)
const time_t * const timep;
{
/*
@@ -1200,8 +1200,8 @@ const time_t * const timep;
return asctime(localtime(timep));
}
-static char *
-ctime_r(timep, buf)
+char *
+ast_ctime_r(timep, buf)
const time_t * const timep;
char *buf;
{