aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2007-06-27 14:16:35 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2007-06-27 14:16:35 +0000
commita313c2dcfdbf13f273e44ada6c681c0ce6980d03 (patch)
tree9ff50fd3d211b888ffe81ff82f4f4db5262e650f /src
parent0a5d437b18791c245ff9e3ff33afcc0cc1eb2f5d (diff)
downloadcflow-a313c2dcfdbf13f273e44ada6c681c0ce6980d03.tar.gz
cflow-a313c2dcfdbf13f273e44ada6c681c0ce6980d03.tar.bz2
Relicense under GPLv3
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/c.l4
-rw-r--r--src/cflow.h4
-rw-r--r--src/gnu.c4
-rw-r--r--src/main.c4
-rw-r--r--src/output.c4
-rw-r--r--src/parser.c4
-rw-r--r--src/parser.h16
-rw-r--r--src/posix.c4
-rw-r--r--src/rc.c4
-rw-r--r--src/symbol.c4
11 files changed, 28 insertions, 28 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 68802ce..3f8e0fb 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,11 +1,11 @@
# This file is part of GNU cflow
-# Copyright (C) 2005 Free Software Foundation, Inc.
+# Copyright (C) 2005, 2007 Free Software Foundation, Inc.
#
# Written by Sergey Poznyakoff
#
# 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
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
diff --git a/src/c.l b/src/c.l
index 43d6066..05f2d6e 100644
--- a/src/c.l
+++ b/src/c.l
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/cflow.h b/src/cflow.h
index 45d4559..7a38682 100644
--- a/src/cflow.h
+++ b/src/cflow.h
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997,2005,2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/gnu.c b/src/gnu.c
index eefc4b0..ddd23e3 100644
--- a/src/gnu.c
+++ b/src/gnu.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997,2005,2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/main.c b/src/main.c
index 94e1cf0..23c2aaa 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997,2005,2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/output.c b/src/output.c
index cec8aae..7e604f4 100644
--- a/src/output.c
+++ b/src/output.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997,2005,2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/parser.c b/src/parser.c
index 30bc9c9..911bf58 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2006 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2006, 2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/parser.h b/src/parser.h
index b8681f3..cb872c1 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -1,20 +1,20 @@
-/* $Id$
- * cflow
- * Copyright (C) 1997 Gray
+/* This file is part of GNU cflow
+ * Copyright (C) 1997, 2007 Sergey Poznyakoff
*
- * This program is free software; you can redistribute it and/or modify
+ * GNU cflow is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * GNU cflow is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * along with GNU cflow; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301 USA
*/
/* tokens */
#define WORD 257
diff --git a/src/posix.c b/src/posix.c
index d8b2fc4..2275cc7 100644
--- a/src/posix.c
+++ b/src/posix.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/rc.c b/src/rc.c
index e005774..ce01017 100644
--- a/src/rc.c
+++ b/src/rc.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997,2005 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,
diff --git a/src/symbol.c b/src/symbol.c
index e37be06..4fe5f85 100644
--- a/src/symbol.c
+++ b/src/symbol.c
@@ -1,9 +1,9 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2006 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2006, 2007 Sergey Poznyakoff
GNU cflow is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
+ the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
GNU cflow is distributed in the hope that it will be useful,

Return to:

Send suggestions and report system problems to the System administrator.