Browse Source

Unify header includes

- Sort Alphabetically
- Same indentation for preprocessor clauses
master
Aaron Marcher 6 years ago
parent
commit
16a97fbca1
6 changed files with 11 additions and 11 deletions
  1. +2
    -2
      components/ip.c
  2. +1
    -1
      components/num_files.c
  3. +2
    -2
      components/ram.c
  4. +1
    -1
      components/temperature.c
  5. +4
    -4
      components/volume.c
  6. +1
    -1
      components/wifi.c

+ 2
- 2
components/ip.c View File

@@ -5,8 +5,8 @@
#include <stdio.h>
#include <string.h>
#if defined(__OpenBSD__)
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/socket.h>
#endif

#include "../util.h"


+ 1
- 1
components/num_files.c View File

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



+ 2
- 2
components/ram.c View File

@@ -54,9 +54,9 @@
NULL;
}
#elif defined(__OpenBSD__)
#include <sys/types.h>
#include <sys/sysctl.h>
#include <stdlib.h>
#include <sys/sysctl.h>
#include <sys/types.h>
#include <unistd.h>

inline int


+ 1
- 1
components/temperature.c View File

@@ -16,9 +16,9 @@
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/sensors.h>
#include <sys/sysctl.h>
#include <sys/time.h>
#include <sys/sensors.h>

const char *
temp(const char *null)


+ 4
- 4
components/volume.c View File

@@ -1,14 +1,14 @@
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#if defined(__OpenBSD__)
# include <soundcard.h>
#include <soundcard.h>
#else
# include <sys/soundcard.h>
#include <sys/soundcard.h>
#endif
#include <sys/ioctl.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

#include "../util.h"


+ 1
- 1
components/wifi.c View File

@@ -2,10 +2,10 @@
#if defined(__linux__)
#include <errno.h>
#include <ifaddrs.h>
#include <limits.h>
#include <linux/wireless.h>
#include <sys/socket.h>
#include <stdio.h>
#include <limits.h>
#include <string.h>
#include <sys/ioctl.h>
#include <unistd.h>


Loading…
Cancel
Save