aboutsummaryrefslogtreecommitdiffstats
path: root/examples/common
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-07-29 08:16:39 -0700
committerChris Robinson <[email protected]>2019-07-29 08:21:38 -0700
commit40e937c63a2a74ef2ff94ba8a056cce0a07832ed (patch)
tree9c9893bde95c5a6c2b2d73d4fb7e0745290cd63c /examples/common
parentd38d2553649555714bfe20f8ca72614974993d47 (diff)
Cleanup the examples' includes
Diffstat (limited to 'examples/common')
-rw-r--r--examples/common/alhelpers.c6
-rw-r--r--examples/common/alhelpers.h2
2 files changed, 2 insertions, 6 deletions
diff --git a/examples/common/alhelpers.c b/examples/common/alhelpers.c
index 3077d0b7..b387fd2d 100644
--- a/examples/common/alhelpers.c
+++ b/examples/common/alhelpers.c
@@ -28,16 +28,14 @@
* finding an appropriate buffer format, and getting readable strings for
* channel configs and sample types. */
-#include <time.h>
+#include "alhelpers.h"
+
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include "AL/al.h"
#include "AL/alc.h"
-#include "AL/alext.h"
-
-#include "alhelpers.h"
/* InitAL opens a device and sets up a context using default attributes, making
diff --git a/examples/common/alhelpers.h b/examples/common/alhelpers.h
index 5caeda38..3752d218 100644
--- a/examples/common/alhelpers.h
+++ b/examples/common/alhelpers.h
@@ -1,9 +1,7 @@
#ifndef ALHELPERS_H
#define ALHELPERS_H
-#include "AL/alc.h"
#include "AL/al.h"
-#include "AL/alext.h"
#ifdef __cplusplus
extern "C" {