diff options
author | Chris Robinson <[email protected]> | 2013-10-03 05:45:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-03 05:45:12 -0700 |
commit | 01a5946a2e371485e4e0774e7dd543ad3a1f0675 (patch) | |
tree | 04ef80e1b13c9bbe76c97c1cee108d8a9a1f7ee6 /Alc/backends/pulseaudio.c | |
parent | 2e605590a264b96f08c36f09b1d969cc9808d5ac (diff) |
Compile using -std=c99 when available
Diffstat (limited to 'Alc/backends/pulseaudio.c')
-rw-r--r-- | Alc/backends/pulseaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/pulseaudio.c b/Alc/backends/pulseaudio.c index 606630aa..7e137157 100644 --- a/Alc/backends/pulseaudio.c +++ b/Alc/backends/pulseaudio.c @@ -39,7 +39,7 @@ #ifdef HAVE_DYNLOAD static void *pa_handle; -#define MAKE_FUNC(x) static typeof(x) * p##x +#define MAKE_FUNC(x) static __typeof(x) * p##x MAKE_FUNC(pa_context_unref); MAKE_FUNC(pa_sample_spec_valid); MAKE_FUNC(pa_frame_size); |