blob: 9e168aa3fc85fcfacc99a8839591b2110b89bbcd [file] [log] [blame] [edit]
/*
* localtime_r.c
*
* Converts the calendar time pointed to by tim_p into a broken-down time
* expressed as local time. Returns a pointer to a structure containing the
* broken-down time.
*/
#include <time.h>
#include "local.h"
struct tm *
_DEFUN (localtime_r, (tim_p, res),
_CONST time_t *__restrict tim_p _AND
struct tm *__restrict res)
{
return _mktm_r (tim_p, res, 0);
}