2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
5 Return the current time in seconds.
8 /*****************************************************************************
19 The ctime() function converts the broken-down time value tt
22 See ctime_r() for details.
25 tt - Convert this time.
28 A statically allocated buffer with the converted time. Note that
29 the contents of the buffer might get lost with the call of any of the
30 date and time functions.
33 This function must not be used in a shared library or
34 in a threaded application. Use ctime_r() instead.
49 time(), asctime(), gmtime(), localtime()
53 ******************************************************************************/
55 return asctime (localtime (tt
));