diff options
Diffstat (limited to 'third_party/nix/src/libutil/hash.cc')
-rw-r--r-- | third_party/nix/src/libutil/hash.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/third_party/nix/src/libutil/hash.cc b/third_party/nix/src/libutil/hash.cc index 647822213278..18b3c89795e8 100644 --- a/third_party/nix/src/libutil/hash.cc +++ b/third_party/nix/src/libutil/hash.cc @@ -1,11 +1,14 @@ #include "hash.hh" + +#include <cstring> +#include <iostream> + #include <fcntl.h> #include <openssl/md5.h> #include <openssl/sha.h> #include <sys/stat.h> #include <sys/types.h> -#include <cstring> -#include <iostream> + #include "archive.hh" #include "istringstream_nocopy.hh" #include "util.hh" |