Xinqi Bao's Git

Added LICENSE statements to all source files
authorAaron Marcher <[email protected]>
Sun, 17 Sep 2017 15:45:03 +0000 (17:45 +0200)
committerAaron Marcher <[email protected]>
Sun, 17 Sep 2017 15:45:03 +0000 (17:45 +0200)
21 files changed:
battery.c
cpu.c
datetime.c
disk.c
entropy.c
hostname.c
ip.c
kernel_release.c
keyboard_indicators.c
load_avg.c
num_files.c
ram.c
run_command.c
swap.c
temperature.c
uptime.c
user.c
util.c
util.h
volume.c
wifi.c

index 9f692ea..0cea55c 100644 (file)
--- a/battery.c
+++ b/battery.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <limits.h>
 #include <stdio.h>
 #include <string.h>
diff --git a/cpu.c b/cpu.c
index 0cc1f88..b4b7ef1 100644 (file)
--- a/cpu.c
+++ b/cpu.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <stdio.h>
 #include <string.h>
 
index 0f7dab4..98510e3 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <time.h>
 
 #include "util.h"
diff --git a/disk.c b/disk.c
index 9fd26fc..51cdaaa 100644 (file)
--- a/disk.c
+++ b/disk.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <stdio.h>
 #include <sys/statvfs.h>
index b0f879a..211022a 100644 (file)
--- a/entropy.c
+++ b/entropy.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <stdio.h>
 
 #include "util.h"
index 23c5a16..0ad1f3b 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <unistd.h>
 
diff --git a/ip.c b/ip.c
index 600fb86..a042c79 100644 (file)
--- a/ip.c
+++ b/ip.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <ifaddrs.h>
 #include <netdb.h>
index 64f1463..abe0acd 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <sys/utsname.h>
 #include <stdio.h>
 
index 4aeae0d..13e8648 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <X11/Xlib.h>
 
index 7342ae9..ad22ae4 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <stdlib.h>
 
index 505e24a..778b8b9 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <dirent.h>
 #include <err.h>
 #include <stdio.h>
diff --git a/ram.c b/ram.c
index 8f7c682..def27aa 100644 (file)
--- a/ram.c
+++ b/ram.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <stdio.h>
 
 #include "util.h"
index 26f1f17..7aa6c4f 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <stdio.h>
 #include <string.h>
diff --git a/swap.c b/swap.c
index 2a627c3..93111c5 100644 (file)
--- a/swap.c
+++ b/swap.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <stdio.h>
 #include <string.h>
index 91b871b..2c78ced 100644 (file)
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <stdio.h>
 
 #include "util.h"
index c9f4fda..827381b 100644 (file)
--- a/uptime.c
+++ b/uptime.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <sys/sysinfo.h>
 
 #include "util.h"
diff --git a/user.c b/user.c
index 5ab7c8e..851acb4 100644 (file)
--- a/user.c
+++ b/user.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <pwd.h>
 #include <sys/types.h>
diff --git a/util.c b/util.c
index 98c5fc5..67b692a 100644 (file)
--- a/util.c
+++ b/util.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <errno.h>
 #include <stdarg.h>
diff --git a/util.h b/util.h
index 8321f9d..e90c29d 100644 (file)
--- a/util.h
+++ b/util.h
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 extern char buf[1024];
 
 #define LEN(x) (sizeof (x) / sizeof *(x))
index a23c4f1..0074754 100644 (file)
--- a/volume.c
+++ b/volume.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <fcntl.h>
 #include <sys/soundcard.h>
diff --git a/wifi.c b/wifi.c
index b0c81f9..41ae4c6 100644 (file)
--- a/wifi.c
+++ b/wifi.c
@@ -1,3 +1,4 @@
+/* See LICENSE file for copyright and license details. */
 #include <err.h>
 #include <ifaddrs.h>
 #include <linux/wireless.h>