Revert "Remove unneeded/wrong braces"

This reverts commit 04e0577b55.
This commit is contained in:
Stefan `Sec` Zehl 2011-08-03 22:20:20 +02:00
parent 03a1001344
commit 5256464953
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@
time_t _timet=0;
char _ytab[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
char _ytab[12] = {
{ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
};
struct tm * mygmtime(register const time_t time) {
static struct tm br_time;