diff options
author | Dan Winship <danw@gnome.org> | 2012-07-06 13:09:50 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2012-07-13 14:18:36 -0400 |
commit | d9db0727ff48f96f5312e65c8f0296f634d2c2b4 (patch) | |
tree | 6dd42c03f1e6feaaa4b2b44dfe50ca3f2f711165 /libsoup/soup-cache.c | |
parent | 7b916078d6e1f3bc54124a9433295a8c3d825c22 (diff) | |
download | libsoup-d9db0727ff48f96f5312e65c8f0296f634d2c2b4.tar.gz |
Clean up includes
Especially, include soup.h rather than individually including a bunch
of other public soup-*.h files.
Remove unnecessary system includes (many are leftovers from code that
has moved down into glib).
Diffstat (limited to 'libsoup/soup-cache.c')
-rw-r--r-- | libsoup/soup-cache.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/libsoup/soup-cache.c b/libsoup/soup-cache.c index fc440539..95182f8c 100644 --- a/libsoup/soup-cache.c +++ b/libsoup/soup-cache.c @@ -29,20 +29,13 @@ #include <config.h> #endif -#include <stdlib.h> #include <string.h> -#include <gio/gio.h> #define LIBSOUP_USE_UNSTABLE_REQUEST_API #include "soup-cache.h" #include "soup-cache-private.h" -#include "soup-date.h" -#include "soup-enum-types.h" -#include "soup-headers.h" -#include "soup-session.h" -#include "soup-session-feature.h" -#include "soup-uri.h" +#include "soup.h" static SoupSessionFeatureInterface *soup_cache_default_feature_interface; static void soup_cache_session_feature_init (SoupSessionFeatureInterface *feature_interface, gpointer interface_data); |