aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mds-kbdc')
-rw-r--r--src/mds-kbdc/builtin-functions.c2
-rw-r--r--src/mds-kbdc/builtin-functions.h2
-rw-r--r--src/mds-kbdc/call-stack.c2
-rw-r--r--src/mds-kbdc/call-stack.h2
-rw-r--r--src/mds-kbdc/callables.c2
-rw-r--r--src/mds-kbdc/callables.h2
-rw-r--r--src/mds-kbdc/compile-layout.c2
-rw-r--r--src/mds-kbdc/compile-layout.h2
-rw-r--r--src/mds-kbdc/eliminate-dead-code.c2
-rw-r--r--src/mds-kbdc/eliminate-dead-code.h2
-rw-r--r--src/mds-kbdc/globals.c2
-rw-r--r--src/mds-kbdc/globals.h2
-rw-r--r--src/mds-kbdc/include-stack.c2
-rw-r--r--src/mds-kbdc/include-stack.h2
-rw-r--r--src/mds-kbdc/make-tree.c2
-rw-r--r--src/mds-kbdc/make-tree.h2
-rw-r--r--src/mds-kbdc/mds-kbdc.c2
-rw-r--r--src/mds-kbdc/mds-kbdc.h2
-rw-r--r--src/mds-kbdc/parse-error.c2
-rw-r--r--src/mds-kbdc/parse-error.h2
-rw-r--r--src/mds-kbdc/parsed.c2
-rw-r--r--src/mds-kbdc/parsed.h2
-rw-r--r--src/mds-kbdc/paths.c2
-rw-r--r--src/mds-kbdc/paths.h2
-rw-r--r--src/mds-kbdc/process-includes.c2
-rw-r--r--src/mds-kbdc/process-includes.h2
-rw-r--r--src/mds-kbdc/raw-data.c2
-rw-r--r--src/mds-kbdc/raw-data.h2
-rw-r--r--src/mds-kbdc/simplify-tree.c2
-rw-r--r--src/mds-kbdc/simplify-tree.h2
-rw-r--r--src/mds-kbdc/string.c2
-rw-r--r--src/mds-kbdc/string.h2
-rw-r--r--src/mds-kbdc/tree.c2
-rw-r--r--src/mds-kbdc/tree.h2
-rw-r--r--src/mds-kbdc/validate-tree.c2
-rw-r--r--src/mds-kbdc/validate-tree.h2
-rw-r--r--src/mds-kbdc/variables.c2
-rw-r--r--src/mds-kbdc/variables.h2
38 files changed, 38 insertions, 38 deletions
diff --git a/src/mds-kbdc/builtin-functions.c b/src/mds-kbdc/builtin-functions.c
index 3ad4e83..120db1c 100644
--- a/src/mds-kbdc/builtin-functions.c
+++ b/src/mds-kbdc/builtin-functions.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/builtin-functions.h b/src/mds-kbdc/builtin-functions.h
index 868f47a..18d28e3 100644
--- a/src/mds-kbdc/builtin-functions.h
+++ b/src/mds-kbdc/builtin-functions.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/call-stack.c b/src/mds-kbdc/call-stack.c
index 642988a..e870011 100644
--- a/src/mds-kbdc/call-stack.c
+++ b/src/mds-kbdc/call-stack.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/call-stack.h b/src/mds-kbdc/call-stack.h
index 3c010cf..09405d2 100644
--- a/src/mds-kbdc/call-stack.h
+++ b/src/mds-kbdc/call-stack.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/callables.c b/src/mds-kbdc/callables.c
index f27f94f..b96d98e 100644
--- a/src/mds-kbdc/callables.c
+++ b/src/mds-kbdc/callables.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/callables.h b/src/mds-kbdc/callables.h
index 32b5467..0a68042 100644
--- a/src/mds-kbdc/callables.h
+++ b/src/mds-kbdc/callables.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/compile-layout.c b/src/mds-kbdc/compile-layout.c
index 0ca9b50..2534cb4 100644
--- a/src/mds-kbdc/compile-layout.c
+++ b/src/mds-kbdc/compile-layout.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/compile-layout.h b/src/mds-kbdc/compile-layout.h
index 677c48c..a5b4572 100644
--- a/src/mds-kbdc/compile-layout.h
+++ b/src/mds-kbdc/compile-layout.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/eliminate-dead-code.c b/src/mds-kbdc/eliminate-dead-code.c
index 5628a91..e446d89 100644
--- a/src/mds-kbdc/eliminate-dead-code.c
+++ b/src/mds-kbdc/eliminate-dead-code.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/eliminate-dead-code.h b/src/mds-kbdc/eliminate-dead-code.h
index 55c351a..6b574c2 100644
--- a/src/mds-kbdc/eliminate-dead-code.h
+++ b/src/mds-kbdc/eliminate-dead-code.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/globals.c b/src/mds-kbdc/globals.c
index d5ae0d6..94df3ec 100644
--- a/src/mds-kbdc/globals.c
+++ b/src/mds-kbdc/globals.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/globals.h b/src/mds-kbdc/globals.h
index 068a304..d9db2fd 100644
--- a/src/mds-kbdc/globals.h
+++ b/src/mds-kbdc/globals.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/include-stack.c b/src/mds-kbdc/include-stack.c
index 6a09e5e..bef0e67 100644
--- a/src/mds-kbdc/include-stack.c
+++ b/src/mds-kbdc/include-stack.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/include-stack.h b/src/mds-kbdc/include-stack.h
index 06d3e70..ebfdf8d 100644
--- a/src/mds-kbdc/include-stack.h
+++ b/src/mds-kbdc/include-stack.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/make-tree.c b/src/mds-kbdc/make-tree.c
index b2273e4..a703647 100644
--- a/src/mds-kbdc/make-tree.c
+++ b/src/mds-kbdc/make-tree.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/make-tree.h b/src/mds-kbdc/make-tree.h
index e854dad..ba4863d 100644
--- a/src/mds-kbdc/make-tree.h
+++ b/src/mds-kbdc/make-tree.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/mds-kbdc.c b/src/mds-kbdc/mds-kbdc.c
index 33b97b2..0f1f3fe 100644
--- a/src/mds-kbdc/mds-kbdc.c
+++ b/src/mds-kbdc/mds-kbdc.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/mds-kbdc.h b/src/mds-kbdc/mds-kbdc.h
index c5fda89..c197af7 100644
--- a/src/mds-kbdc/mds-kbdc.h
+++ b/src/mds-kbdc/mds-kbdc.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/parse-error.c b/src/mds-kbdc/parse-error.c
index f7db9ad..9b511fd 100644
--- a/src/mds-kbdc/parse-error.c
+++ b/src/mds-kbdc/parse-error.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/parse-error.h b/src/mds-kbdc/parse-error.h
index 51094db..fe469a7 100644
--- a/src/mds-kbdc/parse-error.h
+++ b/src/mds-kbdc/parse-error.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/parsed.c b/src/mds-kbdc/parsed.c
index f5fc311..196d910 100644
--- a/src/mds-kbdc/parsed.c
+++ b/src/mds-kbdc/parsed.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/parsed.h b/src/mds-kbdc/parsed.h
index c3026e7..f9b76fb 100644
--- a/src/mds-kbdc/parsed.h
+++ b/src/mds-kbdc/parsed.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/paths.c b/src/mds-kbdc/paths.c
index 6ad39f1..26b2815 100644
--- a/src/mds-kbdc/paths.c
+++ b/src/mds-kbdc/paths.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/paths.h b/src/mds-kbdc/paths.h
index a045334..deed960 100644
--- a/src/mds-kbdc/paths.h
+++ b/src/mds-kbdc/paths.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/process-includes.c b/src/mds-kbdc/process-includes.c
index cf07f56..bedbd6e 100644
--- a/src/mds-kbdc/process-includes.c
+++ b/src/mds-kbdc/process-includes.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/process-includes.h b/src/mds-kbdc/process-includes.h
index f9817c6..4c482b5 100644
--- a/src/mds-kbdc/process-includes.h
+++ b/src/mds-kbdc/process-includes.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/raw-data.c b/src/mds-kbdc/raw-data.c
index 995eb79..78d1939 100644
--- a/src/mds-kbdc/raw-data.c
+++ b/src/mds-kbdc/raw-data.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/raw-data.h b/src/mds-kbdc/raw-data.h
index a638f8a..1ad2373 100644
--- a/src/mds-kbdc/raw-data.h
+++ b/src/mds-kbdc/raw-data.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/simplify-tree.c b/src/mds-kbdc/simplify-tree.c
index d24569d..cdc148f 100644
--- a/src/mds-kbdc/simplify-tree.c
+++ b/src/mds-kbdc/simplify-tree.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/simplify-tree.h b/src/mds-kbdc/simplify-tree.h
index 01e907c..3445ac0 100644
--- a/src/mds-kbdc/simplify-tree.h
+++ b/src/mds-kbdc/simplify-tree.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/string.c b/src/mds-kbdc/string.c
index 843757b..972c781 100644
--- a/src/mds-kbdc/string.c
+++ b/src/mds-kbdc/string.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/string.h b/src/mds-kbdc/string.h
index a07500d..278702e 100644
--- a/src/mds-kbdc/string.h
+++ b/src/mds-kbdc/string.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/tree.c b/src/mds-kbdc/tree.c
index 4e6fef3..fae80ec 100644
--- a/src/mds-kbdc/tree.c
+++ b/src/mds-kbdc/tree.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/tree.h b/src/mds-kbdc/tree.h
index 6cb9dde..41b77d8 100644
--- a/src/mds-kbdc/tree.h
+++ b/src/mds-kbdc/tree.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/validate-tree.c b/src/mds-kbdc/validate-tree.c
index d8824f5..0eb472c 100644
--- a/src/mds-kbdc/validate-tree.c
+++ b/src/mds-kbdc/validate-tree.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/validate-tree.h b/src/mds-kbdc/validate-tree.h
index 7c92928..2c87f14 100644
--- a/src/mds-kbdc/validate-tree.h
+++ b/src/mds-kbdc/validate-tree.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/variables.c b/src/mds-kbdc/variables.c
index 4d4f941..93f9c2d 100644
--- a/src/mds-kbdc/variables.c
+++ b/src/mds-kbdc/variables.c
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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
diff --git a/src/mds-kbdc/variables.h b/src/mds-kbdc/variables.h
index c678c59..73ccd01 100644
--- a/src/mds-kbdc/variables.h
+++ b/src/mds-kbdc/variables.h
@@ -1,6 +1,6 @@
/**
* mds — A micro-display server
- * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
+ * Copyright © 2014, 2015 Mattias Andrée (maandree@member.fsf.org)
*
* 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