aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/io
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2013-01-14 18:20:58 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2013-01-14 18:20:58 +0000
commite3c063ceda2aad832267b81c14e2e5e18023371c (patch)
tree574b1cc61e1a9830671578e93edecc926c25ea29 /libgfortran/io
parent8129609c6ed6298bd1e4e3bbd2be9e6ae049a0a4 (diff)
downloadgcc-e3c063ceda2aad832267b81c14e2e5e18023371c.zip
gcc-e3c063ceda2aad832267b81c14e2e5e18023371c.tar.gz
gcc-e3c063ceda2aad832267b81c14e2e5e18023371c.tar.bz2
Update copyright years in libgfortran.
From-SVN: r195167
Diffstat (limited to 'libgfortran/io')
-rw-r--r--libgfortran/io/close.c2
-rw-r--r--libgfortran/io/fbuf.c2
-rw-r--r--libgfortran/io/fbuf.h3
-rw-r--r--libgfortran/io/file_pos.c3
-rw-r--r--libgfortran/io/format.c4
-rw-r--r--libgfortran/io/format.h3
-rw-r--r--libgfortran/io/inquire.c3
-rw-r--r--libgfortran/io/intrinsics.c3
-rw-r--r--libgfortran/io/io.h4
-rw-r--r--libgfortran/io/list_read.c4
-rw-r--r--libgfortran/io/lock.c3
-rw-r--r--libgfortran/io/open.c3
-rw-r--r--libgfortran/io/read.c3
-rw-r--r--libgfortran/io/size_from_kind.c2
-rw-r--r--libgfortran/io/transfer.c3
-rw-r--r--libgfortran/io/transfer128.c3
-rw-r--r--libgfortran/io/unit.c3
-rw-r--r--libgfortran/io/unix.c4
-rw-r--r--libgfortran/io/unix.h3
-rw-r--r--libgfortran/io/write.c4
-rw-r--r--libgfortran/io/write_float.def3
21 files changed, 21 insertions, 44 deletions
diff --git a/libgfortran/io/close.c b/libgfortran/io/close.c
index 1a4d7d1..fa9c113 100644
--- a/libgfortran/io/close.c
+++ b/libgfortran/io/close.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2005, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
This file is part of the GNU Fortran 95 runtime library (libgfortran).
diff --git a/libgfortran/io/fbuf.c b/libgfortran/io/fbuf.c
index 6dacc54..ace990d 100644
--- a/libgfortran/io/fbuf.c
+++ b/libgfortran/io/fbuf.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2008, 2009, 2010, 2012 Free Software Foundation, Inc.
+/* Copyright (C) 2008-2013 Free Software Foundation, Inc.
Contributed by Janne Blomqvist
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/fbuf.h b/libgfortran/io/fbuf.h
index 3a2883b..d125a2c 100644
--- a/libgfortran/io/fbuf.h
+++ b/libgfortran/io/fbuf.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 2009
- Free Software Foundation, Inc.
+/* Copyright (C) 2009-2013 Free Software Foundation, Inc.
Contributed by Janne Blomqvist
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/file_pos.c b/libgfortran/io/file_pos.c
index c8ecc3a..cf68c9e 100644
--- a/libgfortran/io/file_pos.c
+++ b/libgfortran/io/file_pos.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2002-2003, 2005, 2006, 2007, 2009, 2010
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught and Janne Blomqvist
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/format.c b/libgfortran/io/format.c
index afa5f34..ff3c680 100644
--- a/libgfortran/io/format.c
+++ b/libgfortran/io/format.c
@@ -1,6 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
- 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/format.h b/libgfortran/io/format.h
index 87d8641..529b93e 100644
--- a/libgfortran/io/format.h
+++ b/libgfortran/io/format.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 2009, 2010
- Free Software Foundation, Inc.
+/* Copyright (C) 2009-2013 Free Software Foundation, Inc.
Contributed by Janne Blomqvist
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/inquire.c b/libgfortran/io/inquire.c
index 6dd003c..d91982a 100644
--- a/libgfortran/io/inquire.c
+++ b/libgfortran/io/inquire.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2002, 2003, 2005, 2007, 2009, 2010, 2011
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/intrinsics.c b/libgfortran/io/intrinsics.c
index 9abadae..1573434 100644
--- a/libgfortran/io/intrinsics.c
+++ b/libgfortran/io/intrinsics.c
@@ -1,7 +1,6 @@
/* Implementation of the FGET, FGETC, FPUT, FPUTC, FLUSH
FTELL, TTYNAM and ISATTY intrinsics.
- Copyright (C) 2005, 2007, 2009, 2010, 2011, 2012 Free Software
- Foundation, Inc.
+ Copyright (C) 2005-2013 Free Software Foundation, Inc.
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/io.h b/libgfortran/io/io.h
index 43aeafd..6d9baac 100644
--- a/libgfortran/io/io.h
+++ b/libgfortran/io/io.h
@@ -1,6 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
- 2011, 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c
index acc27e4..fb8a841 100644
--- a/libgfortran/io/list_read.c
+++ b/libgfortran/io/list_read.c
@@ -1,6 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012
- 2013
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
Namelist input contributed by Paul Thomas
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/lock.c b/libgfortran/io/lock.c
index 9e7e951..dbb61a7 100644
--- a/libgfortran/io/lock.c
+++ b/libgfortran/io/lock.c
@@ -1,6 +1,5 @@
/* Thread/recursion locking
- Copyright 2002, 2003, 2004, 2005, 2007, 2009, 2010
- Free Software Foundation, Inc.
+ Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Paul Brook <paul@nowt.org> and Andy Vaught
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/open.c b/libgfortran/io/open.c
index c6b7303..2895767 100644
--- a/libgfortran/io/open.c
+++ b/libgfortran/io/open.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/read.c b/libgfortran/io/read.c
index c493d5a..2da1048 100644
--- a/libgfortran/io/read.c
+++ b/libgfortran/io/read.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2002, 2003, 2005, 2007, 2008, 2009, 2010, 2011
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/size_from_kind.c b/libgfortran/io/size_from_kind.c
index d467df0..8bf992e 100644
--- a/libgfortran/io/size_from_kind.c
+++ b/libgfortran/io/size_from_kind.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2005, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2005-2013 Free Software Foundation, Inc.
Contributed by Janne Blomqvist
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/transfer.c b/libgfortran/io/transfer.c
index 6dda1df..9d2956d 100644
--- a/libgfortran/io/transfer.c
+++ b/libgfortran/io/transfer.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
Namelist transfer functions contributed by Paul Thomas
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/transfer128.c b/libgfortran/io/transfer128.c
index d94ccac..962a700 100644
--- a/libgfortran/io/transfer128.c
+++ b/libgfortran/io/transfer128.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2010, 2011
- Free Software Foundation, Inc.
+/* Copyright (C) 2010-2013 Free Software Foundation, Inc.
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/unit.c b/libgfortran/io/unit.c
index 8b0926d..f8c1516 100644
--- a/libgfortran/io/unit.c
+++ b/libgfortran/io/unit.c
@@ -1,5 +1,4 @@
-/* Copyright (C) 2002, 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/unix.c b/libgfortran/io/unix.c
index e690aec..ba8392d 100644
--- a/libgfortran/io/unix.c
+++ b/libgfortran/io/unix.c
@@ -1,6 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
- 2011, 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h
index f4f3ab6..bf59a8e 100644
--- a/libgfortran/io/unix.h
+++ b/libgfortran/io/unix.h
@@ -1,5 +1,4 @@
-/* Copyright (C) 2009, 2010
- Free Software Foundation, Inc.
+/* Copyright (C) 2009-2013 Free Software Foundation, Inc.
Contributed by Janne Blomqvist
This file is part of the GNU Fortran runtime library (libgfortran).
diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c
index 838bc0d..f17528e 100644
--- a/libgfortran/io/write.c
+++ b/libgfortran/io/write.c
@@ -1,6 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
- 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2002-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
Namelist output contributed by Paul Thomas
F2003 I/O support contributed by Jerry DeLisle
diff --git a/libgfortran/io/write_float.def b/libgfortran/io/write_float.def
index 1e30dde..5b76fd5 100644
--- a/libgfortran/io/write_float.def
+++ b/libgfortran/io/write_float.def
@@ -1,5 +1,4 @@
-/* Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012
- Free Software Foundation, Inc.
+/* Copyright (C) 2007-2013 Free Software Foundation, Inc.
Contributed by Andy Vaught
Write float code factoring to this file by Jerry DeLisle
F2003 I/O support contributed by Jerry DeLisle