| 43153:2e4624a59df5 | 43154:10ae9c0f0cbf |
|---|---|
| 198 #include <sys/time.h> | 198 #include <sys/time.h> |
| 199 #endif | 199 #endif |
| 200 #include <time.h> | 200 #include <time.h> |
| 201 #include <stdio.h> | 201 #include <stdio.h> |
| 202 | 202 |
| 203 int main() | 203 int main(void) |
| 204 { | 204 { |
| 205 char buf[6]; | 205 char buf[6]; |
| 206 time_t t = time(NULL); | 206 time_t t = time(NULL); |
| 207 | 207 |
| 208 if (strftime(buf, sizeof(buf), "%z", localtime(&t)) != 5) | 208 if (strftime(buf, sizeof(buf), "%z", localtime(&t)) != 5) |