From: Rich Felker Date: Wed, 13 Jun 2012 18:41:52 +0000 (-0400) Subject: add timegm function (inverse of gmtime), nonstandard X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=23be72ae4534c13a7fd03f580934cc251ada619f add timegm function (inverse of gmtime), nonstandard --- diff --git a/include/time.h b/include/time.h index 067b5196..ecdc66df 100644 --- a/include/time.h +++ b/include/time.h @@ -114,6 +114,9 @@ struct tm *getdate (const char *); int stime(time_t *); #endif +#if defined(_GNU_SOURCE) +time_t timegm(struct tm *); +#endif #ifdef __cplusplus } diff --git a/src/time/timegm.c b/src/time/timegm.c new file mode 100644 index 00000000..6d08917e --- /dev/null +++ b/src/time/timegm.c @@ -0,0 +1,9 @@ +#define _GNU_SOURCE +#include + +#include "__time.h" + +time_t timegm(struct tm *tm) +{ + return __tm_to_time(tm); +}