summaryrefslogtreecommitdiff
path: root/stdtime
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-10-27 20:00:41 +0000
committerMark Spencer <markster@digium.com>2003-10-27 20:00:41 +0000
commit0de223a1ee6200ce2237e03a4b093e35770ea608 (patch)
treec8ce701bc8a19fff64bf153bba8347c57ac0e658 /stdtime
parent251e70953e7663a46554451fff1ed95f1e4e5ed4 (diff)
More cleanups and OSX fixes for 10.3
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1678 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'stdtime')
-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;
{