summaryrefslogtreecommitdiff
path: root/components/volume.c
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-05-07 11:21:59 +0200
committerAaron Marcher <me@drkhsh.at>2018-05-07 11:21:59 +0200
commit1ff009c456ee1464110ef892a4c26e15aebda3f9 (patch)
treef7d4599f6f9eea2327c9bc11b87a52864d3c526e /components/volume.c
parent8d8135a3c3319f5e7602686aad16a9d18f948b39 (diff)
Unify header includes
- Sort Alphabetically - Same indentation for preprocessor clauses
Diffstat (limited to 'components/volume.c')
-rw-r--r--components/volume.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/volume.c b/components/volume.c
index b2ffb40..ff25769 100644
--- a/components/volume.c
+++ b/components/volume.c
@@ -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"