From b3721a12c5c31ae55141ff46af0c553d060fe363 Mon Sep 17 00:00:00 2001 From: Maarten Bosmans Date: Wed, 9 Mar 2011 10:00:20 +0100 Subject: Fixup #include directives according to Coding Style Use #include "header.h" if functionality of header.h is implemented and #include if functionality of header.h is used. --- src/pulse/context.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'src/pulse/context.c') diff --git a/src/pulse/context.c b/src/pulse/context.c index 8f632b5d..1480af53 100644 --- a/src/pulse/context.c +++ b/src/pulse/context.c @@ -53,6 +53,11 @@ #include #include #include +#include +#include +#ifdef HAVE_X11 +#include +#endif #include #include @@ -71,14 +76,6 @@ #include #include "internal.h" - -#include "client-conf.h" -#include "fork-detect.h" - -#ifdef HAVE_X11 -#include "client-conf-x11.h" -#endif - #include "context.h" void pa_command_extension(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata); -- cgit