diff options
Diffstat (limited to 'sql/tzfile.h')
-rw-r--r-- | sql/tzfile.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sql/tzfile.h b/sql/tzfile.h index 1ff82d62329..4feba612b36 100644 --- a/sql/tzfile.h +++ b/sql/tzfile.h @@ -1,4 +1,8 @@ -/* Copyright (C) 2004 MySQL AB +#ifndef TZFILE_INCLUDED +#define TZFILE_INCLUDED + +/* Copyright (c) 2004, 2006, 2007 MySQL AB, 2009 Sun Microsystems, Inc. + Use is subject to license terms. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -11,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /* This file is based on public domain code from ftp://elsie.ncih.nist.gov/ @@ -134,3 +138,5 @@ struct tzhead { */ #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) + +#endif |