commit 5bc9511fcaa1b5906607d25c747ab28c1b25b4eb
parent d6cf24d6a65279f425b1c498cd111c3ad950c631
Author: FRIGN <dev@frign.de>
Date: Wed, 25 May 2016 08:52:12 +0200
Add LICENSE statements to /lib/*
Diffstat:
7 files changed, 7 insertions(+), 6 deletions(-)
diff --git 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
diff --git 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>
diff --git 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>
diff --git 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"
diff --git 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"
diff --git 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"
diff --git 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"