header include changes

This commit is contained in:
twinaphex 2015-11-23 21:58:39 +01:00
parent 229c25dfc7
commit 09fe26257c
9 changed files with 10 additions and 5 deletions

View File

@ -17,6 +17,7 @@
#include <string.h>
#include "audio_driver.h"
#include "audio_resampler_driver.h"
#include "audio_utils.h"
#include "audio_thread_wrapper.h"

View File

@ -13,12 +13,11 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include "../audio_resampler_driver.h"
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdint.h>
#include <math.h>
#include "../audio_resampler_driver.h"
typedef struct rarch_nearest_resampler
{
float fraction;

View File

@ -15,9 +15,9 @@
/* Bog-standard windowed SINC implementation. */
#include <math.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#ifdef __SSE__

View File

@ -22,6 +22,7 @@
#include "msg_hash.h"
#include "verbosity.h"
#include "audio/audio_driver.h"
#include "audio/audio_resampler_driver.h"
#ifdef HAVE_MENU
#include "menu/menu.h"

View File

@ -33,7 +33,6 @@
#include "camera/camera_driver.h"
#include "location/location_driver.h"
#include "audio/audio_resampler_driver.h"
#include "record/record_driver.h"
#include "libretro_version_1.h"

View File

@ -18,6 +18,7 @@
#define __RARCH_GENERAL_H
#include <stdint.h>
#include <math.h>
#include <limits.h>
/* Platform-specific headers */

View File

@ -39,6 +39,7 @@
#include "../general.h"
#include "../dynamic.h"
#include "../audio/audio_driver.h"
#include "../audio/audio_resampler_driver.h"
#include "../input/input_common.h"
#include "../input/input_autodetect.h"
#include "../config.def.h"

View File

@ -61,6 +61,7 @@ extern "C" {
#include "../../general.h"
#include "../../verbosity.h"
#include "../../audio/audio_resampler_driver.h"
#include "../../audio/audio_utils.h"
#include "../record_driver.h"

View File

@ -16,6 +16,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <math.h>
#include <file/file_path.h>
#include <retro_inline.h>