diff options
author | Aaron Marcher <me@drkhsh.at> | 2017-09-17 17:45:03 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2017-09-17 17:45:03 +0200 |
commit | 11d4bec6481886abb889cbeded5c8f52e5dfd844 (patch) | |
tree | dfb78fa7ee7518e57deed67ab31b2b87e04573ff | |
parent | 914440b4fc3c5ecb7d9eedf4da6f2a1c7ec2e7a9 (diff) |
Added LICENSE statements to all source files
-rw-r--r-- | battery.c | 1 | ||||
-rw-r--r-- | cpu.c | 1 | ||||
-rw-r--r-- | datetime.c | 1 | ||||
-rw-r--r-- | disk.c | 1 | ||||
-rw-r--r-- | entropy.c | 1 | ||||
-rw-r--r-- | hostname.c | 1 | ||||
-rw-r--r-- | ip.c | 1 | ||||
-rw-r--r-- | kernel_release.c | 1 | ||||
-rw-r--r-- | keyboard_indicators.c | 1 | ||||
-rw-r--r-- | load_avg.c | 1 | ||||
-rw-r--r-- | num_files.c | 1 | ||||
-rw-r--r-- | ram.c | 1 | ||||
-rw-r--r-- | run_command.c | 1 | ||||
-rw-r--r-- | swap.c | 1 | ||||
-rw-r--r-- | temperature.c | 1 | ||||
-rw-r--r-- | uptime.c | 1 | ||||
-rw-r--r-- | user.c | 1 | ||||
-rw-r--r-- | util.c | 1 | ||||
-rw-r--r-- | util.h | 1 | ||||
-rw-r--r-- | volume.c | 1 | ||||
-rw-r--r-- | wifi.c | 1 |
21 files changed, 21 insertions, 0 deletions
@@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <limits.h> #include <stdio.h> #include <string.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <stdio.h> #include <string.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <time.h> #include "util.h" @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <stdio.h> #include <sys/statvfs.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <stdio.h> #include "util.h" @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <unistd.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <ifaddrs.h> #include <netdb.h> diff --git a/kernel_release.c b/kernel_release.c index 64f1463..abe0acd 100644 --- a/kernel_release.c +++ b/kernel_release.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <sys/utsname.h> #include <stdio.h> diff --git a/keyboard_indicators.c b/keyboard_indicators.c index 4aeae0d..13e8648 100644 --- a/keyboard_indicators.c +++ b/keyboard_indicators.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <X11/Xlib.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <stdlib.h> diff --git a/num_files.c b/num_files.c index 505e24a..778b8b9 100644 --- a/num_files.c +++ b/num_files.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <dirent.h> #include <err.h> #include <stdio.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <stdio.h> #include "util.h" diff --git a/run_command.c b/run_command.c index 26f1f17..7aa6c4f 100644 --- a/run_command.c +++ b/run_command.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <stdio.h> #include <string.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <stdio.h> #include <string.h> diff --git a/temperature.c b/temperature.c index 91b871b..2c78ced 100644 --- a/temperature.c +++ b/temperature.c @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <stdio.h> #include "util.h" @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <sys/sysinfo.h> #include "util.h" @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <pwd.h> #include <sys/types.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <errno.h> #include <stdarg.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ extern char buf[1024]; #define LEN(x) (sizeof (x) / sizeof *(x)) @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <fcntl.h> #include <sys/soundcard.h> @@ -1,3 +1,4 @@ +/* See LICENSE file for copyright and license details. */ #include <err.h> #include <ifaddrs.h> #include <linux/wireless.h> |