summaryrefslogblamecommitdiff
path: root/src/time/gmtime_r.c
blob: 0272870d6e46eb49019239bc8cd938aae7d40f93 (plain) (tree)
1
2
3
4
5
6


                      
 
                                                                       
 







                                       
 

                                 
#include "time_impl.h"
#include <errno.h>
#include "libc.h"

struct tm *__gmtime_r(const time_t *restrict t, struct tm *restrict tm)
{
	if (__secs_to_tm(*t, tm) < 0) {
		errno = EINVAL;
		return 0;
	}
	tm->tm_isdst = 0;
	tm->__tm_gmtoff = 0;
	tm->__tm_zone = "GMT";
	return tm;
}

weak_alias(__gmtime_r, gmtime_r);