commit 273250f23e8ad2bbb16ea03d53e96589a1870852
parent 288ea3a0e3f65c363f46a38c7f7d0a36789235bb
Author: Raymond Cole <rc@wolog.xyz>
Date:   Tue,  5 Nov 2024 03:10:03 +0000
Reword license notice
Diffstat:
4 files changed, 4 insertions(+), 16 deletions(-)
diff --git a/fifolog.c b/fifolog.c
@@ -1,9 +1,6 @@
 /*
  * Copyright (C) Raymond Cole <rc@wolog.xyz>
- *
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version.  See the LICENSE
- * file for details.
+ * License: GPL-3.0-or-later
  */
 #include <errno.h>
 #include <fcntl.h>
diff --git a/ticktack.c b/ticktack.c
@@ -1,9 +1,6 @@
 /*
  * Copyright (C) Raymond Cole <rc@wolog.xyz>
- *
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version.  See the LICENSE
- * file for details.
+ * License: GPL-3.0-or-later
  */
 #define _POSIX_C_SOURCE 200112L
 #include <errno.h>
diff --git a/util.c b/util.c
@@ -1,9 +1,6 @@
 /*
  * Copyright (C) Raymond Cole <rc@wolog.xyz>
- *
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version.  See the LICENSE
- * file for details.
+ * License: GPL-3.0-or-later
  */
 #include <errno.h>
 #include <stdarg.h>
diff --git a/util.h b/util.h
@@ -1,9 +1,6 @@
 /*
  * Copyright (C) Raymond Cole <rc@wolog.xyz>
- *
- * Licensed under the GNU General Public License; either version 3 of
- * the License, or (at your option) any later version.  See the LICENSE
- * file for details.
+ * License: GPL-3.0-or-later
  */
 
 #define MAX(A, B)         ((A) > (B) ? (A) : (B))