Include config.h consistently in source files and not in headers

This commit is contained in:
Maarten Bosmans 2011-08-10 10:30:13 +02:00 committed by Colin Guthrie
parent 625380d809
commit f10da7683d
3 changed files with 4 additions and 8 deletions

View file

@ -19,6 +19,10 @@
USA.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "cpu-orc.h"
void pa_cpu_init_orc(pa_cpu_info cpu_info)

View file

@ -22,10 +22,6 @@
USA.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <pulsecore/cpu.h>
/* Orc-optimised bits */

View file

@ -21,10 +21,6 @@
USA.
***/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <pulsecore/macro.h>
#include <pulse/sample.h>
#include <pulse/channelmap.h>