summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-10-26 00:29:14 +0200
committerLennart Poettering <lennart@poettering.net>2008-10-26 00:29:14 +0200
commit0991b112cdc4f4f5fdf3ee81ca575afc1a4b6bb3 (patch)
tree31e6be22fac3a15a2c3b8f24aabefeebe69c3604
parent57f44efc5344ecd8fc02187b0c712b5fa11a045c (diff)
reorder inclusions
-rw-r--r--src/oss.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/oss.c b/src/oss.c
index 12b4618..b45e178 100644
--- a/src/oss.c
+++ b/src/oss.c
@@ -29,6 +29,12 @@
#include <sys/uio.h>
#include <math.h>
#include <unistd.h>
+#include <errno.h>
+#include <fcntl.h>
+#include <stdlib.h>
+#include <poll.h>
+#include <pthread.h>
+#include <semaphore.h>
#ifdef HAVE_MACHINE_SOUNDCARD_H
# include <machine/soundcard.h>
@@ -40,13 +46,6 @@
# endif
#endif
-#include <errno.h>
-#include <fcntl.h>
-#include <stdlib.h>
-#include <poll.h>
-#include <pthread.h>
-#include <semaphore.h>
-
#include "canberra.h"
#include "common.h"
#include "driver.h"