shithub: scc

Download patch

ref: b08e265bc32672ff4b8946ec38419001a22cad1f
parent: 00ec91e8acfe327f70bd0ea829d1606ad031b526
author: FRIGN <dev@frign.de>
date: Wed May 25 04:52:12 EDT 2016

Add LICENSE statements to /lib/*

--- a/lib/Makefile
+++ b/lib/Makefile
@@ -1,3 +1,4 @@
+# See LICENSE file for copyright and license details.
 include ../config.mk
 
 OBJS = die.o xcalloc.o xmalloc.o xrealloc.o xstrdup.o debug.o
--- a/lib/debug.c
+++ b/lib/debug.c
@@ -1,4 +1,4 @@
-
+/* See LICENSE file for copyright and license details. */
 #include <stdarg.h>
 #include <stdio.h>
 
--- a/lib/die.c
+++ b/lib/die.c
@@ -1,4 +1,4 @@
-
+/* See LICENSE file for copyright and license details. */
 #include <inttypes.h>
 #include <stdarg.h>
 #include <stdlib.h>
--- a/lib/xcalloc.c
+++ b/lib/xcalloc.c
@@ -1,4 +1,4 @@
-
+/* See LICENSE file for copyright and license details. */
 #include <stdlib.h>
 #include "../inc/cc.h"
 
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -1,4 +1,4 @@
-
+/* See LICENSE file for copyright and license details. */
 #include <stdlib.h>
 #include "../inc/cc.h"
 
--- a/lib/xrealloc.c
+++ b/lib/xrealloc.c
@@ -1,4 +1,4 @@
-
+/* See LICENSE file for copyright and license details. */
 #include <stdlib.h>
 #include "../inc/cc.h"
 
--- a/lib/xstrdup.c
+++ b/lib/xstrdup.c
@@ -1,4 +1,4 @@
-
+/* See LICENSE file for copyright and license details. */
 #include <string.h>
 #include "../inc/cc.h"