libmatheval.git -

summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.am 2
-rw-r--r--lib/common.h 2
-rw-r--r--lib/error.c 2
-rw-r--r--lib/error.h 2
-rw-r--r--lib/g77_interface.c 4
-rw-r--r--lib/matheval.c 2
-rw-r--r--lib/matheval.h 2
-rw-r--r--lib/node.c 2
-rw-r--r--lib/node.h 2
-rw-r--r--lib/parser.y 4
-rw-r--r--lib/scanner.l 4
-rw-r--r--lib/symbol_table.c 2
-rw-r--r--lib/symbol_table.h 2
-rw-r--r--lib/xmalloc.c 2
-rw-r--r--lib/xmalloc.h 2
-rw-r--r--lib/xmath.c 2
-rw-r--r--lib/xmath.h 2
17 files changed, 20 insertions, 20 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 157176d..7626f26 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -1,5 +1,5 @@
# Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
-# 2012 Free Software Foundation, Inc.
+# 2012, 2013 Free Software Foundation, Inc.
#
# This file is part of GNU libmatheval
#
diff --git a/lib/common.h b/lib/common.h
index 89ea60d..7d8884d 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/error.c b/lib/error.c
index e7d9f6e..a7e1667 100644
--- a/lib/error.c
+++ b/lib/error.c
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/error.h b/lib/error.h
index b4b8773..724572b 100644
--- a/lib/error.h
+++ b/lib/error.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/g77_interface.c b/lib/g77_interface.c
index 2acd74c..c8c7de5 100644
--- a/lib/g77_interface.c
+++ b/lib/g77_interface.c
@@ -1,6 +1,6 @@
/*
- * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012
- * Free Software Foundation, Inc.
+ * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011, 2012,
+ * 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/matheval.c b/lib/matheval.c
index 0d52192..0e327fb 100644
--- a/lib/matheval.c
+++ b/lib/matheval.c
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/matheval.h b/lib/matheval.h
index 367a837..4dfffe7 100644
--- a/lib/matheval.h
+++ b/lib/matheval.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/node.c b/lib/node.c
index 1e935ee..25bdf46 100644
--- a/lib/node.c
+++ b/lib/node.c
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/node.h b/lib/node.h
index caa3fb7..345da0c 100644
--- a/lib/node.h
+++ b/lib/node.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/parser.y b/lib/parser.y
index d634592..65a7c3a 100644
--- a/lib/parser.y
+++ b/lib/parser.y
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
@@ -22,7 +22,7 @@
%{
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* GNU libmatheval is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
diff --git a/lib/scanner.l b/lib/scanner.l
index 0c60cda..08a4171 100644
--- a/lib/scanner.l
+++ b/lib/scanner.l
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
@@ -22,7 +22,7 @@
%{
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/symbol_table.c b/lib/symbol_table.c
index 6f8e3e8..ebfedfc 100644
--- a/lib/symbol_table.c
+++ b/lib/symbol_table.c
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/symbol_table.h b/lib/symbol_table.h
index 3fc0b77..ecf3d2e 100644
--- a/lib/symbol_table.h
+++ b/lib/symbol_table.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index ea740ee..0bedc16 100644
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmalloc.h b/lib/xmalloc.h
index 052601c..8fc1280 100644
--- a/lib/xmalloc.h
+++ b/lib/xmalloc.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmath.c b/lib/xmath.c
index 27644dc..4567154 100644
--- a/lib/xmath.c
+++ b/lib/xmath.c
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
diff --git a/lib/xmath.h b/lib/xmath.h
index 07fc3ca..acf498b 100644
--- a/lib/xmath.h
+++ b/lib/xmath.h
@@ -1,6 +1,6 @@
/*
* Copyright (C) 1999, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2011,
- * 2012 Free Software Foundation, Inc.
+ * 2012, 2013 Free Software Foundation, Inc.
*
* This file is part of GNU libmatheval
*
generated by cgit v1.2.3 (git 2.39.1) at 2025年09月05日 21:50:58 +0000

AltStyle によって変換されたページ (->オリジナル) /