Browse Source

Added LICENSE statements to all source files

master
Aaron Marcher 8 years ago
parent
commit
11d4bec648
No known key found for this signature in database GPG Key ID: 74B048E5C2474F9A
  1. 1
      battery.c
  2. 1
      cpu.c
  3. 1
      datetime.c
  4. 1
      disk.c
  5. 1
      entropy.c
  6. 1
      hostname.c
  7. 1
      ip.c
  8. 1
      kernel_release.c
  9. 1
      keyboard_indicators.c
  10. 1
      load_avg.c
  11. 1
      num_files.c
  12. 1
      ram.c
  13. 1
      run_command.c
  14. 1
      swap.c
  15. 1
      temperature.c
  16. 1
      uptime.c
  17. 1
      user.c
  18. 1
      util.c
  19. 1
      util.h
  20. 1
      volume.c
  21. 1
      wifi.c

1
battery.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <limits.h> #include <limits.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

1
cpu.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

1
datetime.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <time.h> #include <time.h>
#include "util.h" #include "util.h"

1
disk.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <stdio.h> #include <stdio.h>
#include <sys/statvfs.h> #include <sys/statvfs.h>

1
entropy.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <stdio.h> #include <stdio.h>
#include "util.h" #include "util.h"

1
hostname.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <unistd.h> #include <unistd.h>

1
ip.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <ifaddrs.h> #include <ifaddrs.h>
#include <netdb.h> #include <netdb.h>

1
kernel_release.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <sys/utsname.h> #include <sys/utsname.h>
#include <stdio.h> #include <stdio.h>

1
keyboard_indicators.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <X11/Xlib.h> #include <X11/Xlib.h>

1
load_avg.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <stdlib.h> #include <stdlib.h>

1
num_files.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <dirent.h> #include <dirent.h>
#include <err.h> #include <err.h>
#include <stdio.h> #include <stdio.h>

1
ram.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <stdio.h> #include <stdio.h>
#include "util.h" #include "util.h"

1
run_command.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

1
swap.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

1
temperature.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <stdio.h> #include <stdio.h>
#include "util.h" #include "util.h"

1
uptime.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <sys/sysinfo.h> #include <sys/sysinfo.h>
#include "util.h" #include "util.h"

1
user.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <pwd.h> #include <pwd.h>
#include <sys/types.h> #include <sys/types.h>

1
util.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <errno.h> #include <errno.h>
#include <stdarg.h> #include <stdarg.h>

1
util.h

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
extern char buf[1024]; extern char buf[1024];
#define LEN(x) (sizeof (x) / sizeof *(x)) #define LEN(x) (sizeof (x) / sizeof *(x))

1
volume.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <fcntl.h> #include <fcntl.h>
#include <sys/soundcard.h> #include <sys/soundcard.h>

1
wifi.c

@ -1,3 +1,4 @@
/* See LICENSE file for copyright and license details. */
#include <err.h> #include <err.h>
#include <ifaddrs.h> #include <ifaddrs.h>
#include <linux/wireless.h> #include <linux/wireless.h>

Loading…
Cancel
Save