2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Return the current time in seconds, reentrant.
8 /*****************************************************************************
20 The ctime_r() function converts the time value tt into a string with
23 "Wed Jun 30 21:49:08 1993\n"
26 tt - Convert this time.
27 buf - Buffer of at least 26 characters to store the string in
30 The pointer passed in buf, containing the converted time. Note that
31 there is a newline at the end of the buffer.
48 time(), asctime_r(), gmtime_r(), localtime_r()
52 ******************************************************************************/
55 return asctime_r (localtime_r (tt
, &tm
), buf
);