fix indention with spaces in powerpc asm
[oweals/musl.git] / src / time / gmtime_r.c
index 5b565a65c0967f8ac6ddcaa563663f738ca40fc6..13a2548fd44b9427e0a3450fb9f6fc9842b1661e 100644 (file)
@@ -2,7 +2,7 @@
 
 #include "__time.h"
 
-struct tm *gmtime_r(const time_t *t, struct tm *result)
+struct tm *gmtime_r(const time_t *restrict t, struct tm *restrict result)
 {
        __time_to_tm(*t, result);
        result->tm_isdst = 0;