use restrict everywhere it's required by c99 and/or posix 2008
[musl] / src / time / gmtime_r.c
1 #include <time.h>
2
3 #include "__time.h"
4
5 struct tm *gmtime_r(const time_t *restrict t, struct tm *restrict result)
6 {
7         __time_to_tm(*t, result);
8         result->tm_isdst = 0;
9         return result;
10 }