aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--examples/alrecord.c1
-rw-r--r--examples/common/alhelpers.c1
-rw-r--r--examples/common/alhelpers.h10
3 files changed, 7 insertions, 5 deletions
diff --git a/examples/alrecord.c b/examples/alrecord.c
index f60a3055..30f5f792 100644
--- a/examples/alrecord.c
+++ b/examples/alrecord.c
@@ -27,6 +27,7 @@
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
+#include <errno.h>
#include <math.h>
#include "AL/al.h"
diff --git a/examples/common/alhelpers.c b/examples/common/alhelpers.c
index 657c10d3..6a583497 100644
--- a/examples/common/alhelpers.c
+++ b/examples/common/alhelpers.c
@@ -29,6 +29,7 @@
* channel configs and sample types. */
#include <stdio.h>
+#include <errno.h>
#include <string.h>
#include "AL/al.h"
diff --git a/examples/common/alhelpers.h b/examples/common/alhelpers.h
index e3e638ac..14edf5d9 100644
--- a/examples/common/alhelpers.h
+++ b/examples/common/alhelpers.h
@@ -1,15 +1,15 @@
#ifndef ALHELPERS_H
#define ALHELPERS_H
+#include <time.h>
+
#include "AL/alc.h"
#include "AL/al.h"
#include "AL/alext.h"
-#include "threads.h"
-
#ifdef __cplusplus
extern "C" {
-#endif /* __cplusplus */
+#endif
/* Some helper functions to get the name from the format enums. */
const char *FormatName(ALenum type);
@@ -30,7 +30,7 @@ int altimespec_get(struct timespec *ts, int base);
void al_nssleep(unsigned long nsec);
#ifdef __cplusplus
-}
-#endif /* __cplusplus */
+} // extern "C"
+#endif
#endif /* ALHELPERS_H */