mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
(Xbox 1) Add C++ ifdef __cplusplus extern "C" header guards
This commit is contained in:
parent
e156450028
commit
839c121ecd
@ -16,6 +16,10 @@
|
||||
#ifndef AUDIO_UTILS_H
|
||||
#define AUDIO_UTILS_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
@ -71,5 +75,8 @@ void audio_convert_float_to_s16_C(int16_t *out,
|
||||
|
||||
void audio_convert_init_simd(void);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user