diff options
author | Vincent Ambo <tazjin@google.com> | 2020-05-19T14·54+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-05-19T14·55+0100 |
commit | c758de9d22506eb279c5abe61f621e5c8f61af95 (patch) | |
tree | 3b1703133f56f7e301f538014dc7e41713a2e980 /third_party/nix/src/libstore/gc.cc | |
parent | b508f5b91a1b0c7009dcafb23114fff8d6020765 (diff) |
style(3p/nix): Reformat all includes to match new style r/766
Diffstat (limited to 'third_party/nix/src/libstore/gc.cc')
-rw-r--r-- | third_party/nix/src/libstore/gc.cc | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/third_party/nix/src/libstore/gc.cc b/third_party/nix/src/libstore/gc.cc index 183b3c1a4a17..44c118bed448 100644 --- a/third_party/nix/src/libstore/gc.cc +++ b/third_party/nix/src/libstore/gc.cc @@ -1,15 +1,17 @@ -#include <errno.h> -#include <fcntl.h> -#include <sys/stat.h> -#include <sys/statvfs.h> -#include <sys/types.h> -#include <unistd.h> #include <algorithm> #include <climits> #include <functional> #include <queue> #include <random> #include <regex> + +#include <errno.h> +#include <fcntl.h> +#include <sys/stat.h> +#include <sys/statvfs.h> +#include <sys/types.h> +#include <unistd.h> + #include "derivations.hh" #include "finally.hh" #include "globals.hh" |