aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2014-02-07 19:15:26 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2014-02-07 19:15:26 +0200
commitc9b5abe560c2fe06368cb733df8bcbfdb33a8526 (patch)
treef47eefa10b62e8564e80fd3424bd1cd8700c9620 /src
parente0db6733fc8563896090f678d382375897757d18 (diff)
downloadcflow-c9b5abe560c2fe06368cb733df8bcbfdb33a8526.tar.gz
cflow-c9b5abe560c2fe06368cb733df8bcbfdb33a8526.tar.bz2
Update copyright statements. Remove 'Front-Cover' clause from cflow.texi
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am5
-rw-r--r--src/argcv.c7
-rw-r--r--src/argcv.h6
-rw-r--r--src/c.l6
-rw-r--r--src/cflow.h8
-rw-r--r--src/depmap.c2
-rw-r--r--src/gnu.c8
-rw-r--r--src/linked-list.c8
-rw-r--r--src/main.c8
-rw-r--r--src/output.c8
-rw-r--r--src/parser.c6
-rw-r--r--src/parser.h6
-rw-r--r--src/posix.c8
-rw-r--r--src/rc.c8
-rw-r--r--src/symbol.c8
15 files changed, 37 insertions, 65 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index a66f42a..bad0476 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -14,10 +14,7 @@
14# GNU General Public License for more details. 14# GNU General Public License for more details.
15# 15#
16# You should have received a copy of the GNU General Public License 16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
18# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19# 02110-1301 USA.
20
21 18
22bin_PROGRAMS = cflow 19bin_PROGRAMS = cflow
23cflow_SOURCES = \ 20cflow_SOURCES = \
diff --git a/src/argcv.c b/src/argcv.c
index 51e335e..611cb64 100644
--- a/src/argcv.c
+++ b/src/argcv.c
@@ -11,10 +11,9 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details. 12 Lesser General Public License for more details.
13 13
14 You should have received a copy of the GNU Lesser General 14 You should have received a copy of the GNU General Public License
15 Public License along with this library; if not, write to the 15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16*/
17 Boston, MA 02110-1301 USA */
18 17
19#ifdef HAVE_CONFIG_H 18#ifdef HAVE_CONFIG_H
20# include <config.h> 19# include <config.h>
diff --git a/src/argcv.h b/src/argcv.h
index 17a2f31..c082709 100644
--- a/src/argcv.h
+++ b/src/argcv.h
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details. 12 Lesser General Public License for more details.
13 13
14 You should have received a copy of the GNU Lesser General 14 You should have received a copy of the GNU General Public License
15 Public License along with this library; if not, write to the 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301 USA */
18 16
19#ifndef _ARGCV_H 17#ifndef _ARGCV_H
20#define _ARGCV_H 1 18#define _ARGCV_H 1
diff --git a/src/c.l b/src/c.l
index d0466ed..510ee1f 100644
--- a/src/c.l
+++ b/src/c.l
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 12 GNU General Public License for more details.
13 13
14 You should have received a copy of the GNU General Public 14 You should have received a copy of the GNU General Public License
15 License along with GNU cflow; if not, write to the Free Software 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 MA 02110-1301 USA */
18 16
19%top { 17%top {
20#include <cflow.h> 18#include <cflow.h>
diff --git a/src/cflow.h b/src/cflow.h
index 07cc8cf..28ba0db 100644
--- a/src/cflow.h
+++ b/src/cflow.h
@@ -1,5 +1,5 @@
1/* This file is part of GNU cflow 1/* This file is part of GNU cflow
2 Copyright (C) 1997, 2005, 2007, 2009, 2010 Sergey Poznyakoff 2 Copyright (C) 1997, 2005, 2007, 2009-2010, 2014 Sergey Poznyakoff
3 3
4 GNU cflow is free software; you can redistribute it and/or modify 4 GNU cflow is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 12 GNU General Public License for more details.
13 13
14 You should have received a copy of the GNU General Public 14 You should have received a copy of the GNU General Public License
15 License along with GNU cflow; if not, write to the Free Software 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 MA 02110-1301 USA */
18 16
19#ifdef HAVE_CONFIG_H 17#ifdef HAVE_CONFIG_H
20# include <config.h> 18# include <config.h>
diff --git a/src/depmap.c b/src/depmap.c
index e1753ce..6cb4c8e 100644
--- a/src/depmap.c
+++ b/src/depmap.c
@@ -1,5 +1,5 @@
1/* This file is part of GNU cflow. 1/* This file is part of GNU cflow.
2 Copyright (C) 2008, 2009, 2010 Sergey Poznyakoff 2 Copyright (C) 2008-2010, 2014 Sergey Poznyakoff
3 3
4 GNU cflow is free software; you can redistribute it and/or modify 4 GNU cflow is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
diff --git a/src/gnu.c b/src/gnu.c
index e471892..aae4909 100644
--- a/src/gnu.c
+++ b/src/gnu.c
@@ -1,5 +1,5 @@
1/* This file is part of GNU cflow 1/* This file is part of GNU cflow
2 Copyright (C) 1997, 2005, 2007, 2010 Sergey Poznyakoff 2 Copyright (C) 1997, 2005, 2007, 2010, 2014 Sergey Poznyakoff
3 3
4 GNU cflow is free software; you can redistribute it and/or modify 4 GNU cflow is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 12 GNU General Public License for more details.
13 13
14 You should have received a copy of the GNU General Public 14 You should have received a copy of the GNU General Public License
15 License along with GNU cflow; if not, write to the Free Software 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 MA 02110-1301 USA */
18 16
19#include <cflow.h> 17#include <cflow.h>
20 18
diff --git a/src/linked-list.c b/src/linked-list.c
index e81fd1c..1091dd7 100644
--- a/src/linked-list.c
+++ b/src/linked-list.c
@@ -1,5 +1,5 @@
1/* This file is part of GNU cflow 1/* This file is part of GNU cflow
2 Copyright (C) 1997, 2005, 2006, 2007, 2009, 2010 Sergey Poznyakoff 2 Copyright (C) 1997, 2005-2007, 2009-2010, 2014 Sergey Poznyakoff
3 3
4 GNU cflow is free software; you can redistribute it and/or modify 4 GNU cflow is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 12 GNU General Public License for more details.
13 13
14 You should have received a copy of the GNU General Public 14 You should have received a copy of the GNU General Public License
15 License along with GNU cflow; if not, write to the Free Software 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 MA 02110-1301 USA */
18 16
19#include <cflow.h> 17#include <cflow.h>
20 18
diff --git a/src/main.c b/src/main.c
index 34db7a1..e78993a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,5 +1,5 @@
1/* This file is part of GNU cflow 1/* This file is part of GNU cflow
2 Copyright (C) 1997, 2005, 2007, 2009, 2010, 2011 Sergey Poznyakoff 2 Copyright (C) 1997, 2005, 2007, 2009-2011, 2014 Sergey Poznyakoff
3 3
4 GNU cflow is free software; you can redistribute it and/or modify 4 GNU cflow is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 12 GNU General Public License for more details.
13 13
14 You should have received a copy of the GNU General Public 14 You should have received a copy of the GNU General Public License
15 License along with GNU cflow; if not, write to the Free Software 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 MA 02110-1301 USA */
18 16
19#include <cflow.h> 17#include <cflow.h>
20#include <argp.h> 18#include <argp.h>
diff --git a/src/output.c b/src/output.c
index 519a332..d46b496 100644
--- a/src/output.c
+++ b/src/output.c
@@ -1,5 +1,5 @@
1/* This file is part of GNU cflow 1/* This file is part of GNU cflow
2 Copyright (C) 1997, 2005, 2007, 2009, 2010, 2011 Sergey Poznyakoff 2 Copyright (C) 1997, 2005, 2007, 2009-2011, 2014 Sergey Poznyakoff
3 3
4 GNU cflow is free software; you can redistribute it and/or modify 4 GNU cflow is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by 5 it under the terms of the GNU General Public License as published by
@@ -11,10 +11,8 @@
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details. 12 GNU General Public License for more details.
13 13
14 You should have received a copy of the GNU General Public 14 You should have received a copy of the GNU General Public License
15 License along with GNU cflow; if not, write to the Free Software 15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 MA 02110-1301 USA */
18 16
19#include <cflow.h> 17#include <cflow.h>
20#include <parser.h> 18#include <parser.h>
diff --git a/src/parser.c b/src/parser.c
index 8dc2a4f..be82197 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -12,10 +12,8 @@
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details. 13 GNU General Public License for more details.
14 14
15 You should have received a copy of the GNU General Public 15 You should have received a copy of the GNU General Public License
16 License along with GNU cflow; if not, write to the Free Software 16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 MA 02110-1301 USA */
19 17
20#include <cflow.h> 18#include <cflow.h>