diff options
author | Julian Andres Klode <jak@debian.org> | 2017-07-12 15:25:00 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2017-07-12 15:25:00 +0200 |
commit | 11f92b12dbd029fa93618bc5f23cba18e794a132 (patch) | |
tree | 9167ac5ce93c1cd98be1f0dd59a3f6db3fc0f86b /apt-private/private-download.cc | |
parent | 46e1aa6afd4239e263ce52525c09eb004b67405f (diff) | |
parent | 51da6127d0073c9fc81f4b220f2360bd612ded5c (diff) |
Merge branch 'misc/include-cleanup'
This should make it easier to read includes.
Diffstat (limited to 'apt-private/private-download.cc')
-rw-r--r-- | apt-private/private-download.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/apt-private/private-download.cc b/apt-private/private-download.cc index c8d1b5a09..25dee318e 100644 --- a/apt-private/private-download.cc +++ b/apt-private/private-download.cc @@ -1,30 +1,30 @@ // Include Files /*{{{*/ #include <config.h> -#include <apt-pkg/acquire.h> #include <apt-pkg/acquire-item.h> +#include <apt-pkg/acquire.h> #include <apt-pkg/cacheset.h> -#include <apt-pkg/cmndline.h> #include <apt-pkg/clean.h> +#include <apt-pkg/cmndline.h> #include <apt-pkg/configuration.h> #include <apt-pkg/error.h> #include <apt-pkg/fileutl.h> #include <apt-pkg/strutl.h> +#include <apt-private/acqprogress.h> #include <apt-private/private-cachefile.h> #include <apt-private/private-download.h> #include <apt-private/private-output.h> #include <apt-private/private-utils.h> -#include <apt-private/acqprogress.h> #include <fstream> #include <string> #include <vector> -#include <unistd.h> -#include <sys/types.h> -#include <pwd.h> #include <fcntl.h> +#include <pwd.h> +#include <sys/types.h> +#include <unistd.h> #ifdef HAVE_VFS_H #include <sys/vfs.h> #else @@ -33,9 +33,9 @@ #endif #include <sys/mount.h> #endif -#include <sys/statvfs.h> -#include <sys/stat.h> #include <errno.h> +#include <sys/stat.h> +#include <sys/statvfs.h> #include <apti18n.h> /*}}}*/ |