This commit is contained in:
Eelco Dolstra 2019-11-06 16:53:02 +01:00
parent 35732a95bc
commit 39a2e166dd
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE
4 changed files with 6 additions and 6 deletions

View File

@ -23,8 +23,8 @@
#include <chrono>
#include <regex>
#include <queue>
#include <climits>
#include <limits.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <sys/types.h>

View File

@ -10,6 +10,7 @@
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <iostream>
#include <sstream>
#include <thread>
@ -17,7 +18,6 @@
#include <fcntl.h>
#include <grp.h>
#include <limits.h>
#include <pwd.h>
#include <sys/ioctl.h>
#include <sys/types.h>

View File

@ -1,10 +1,10 @@
#include <assert.h>
#include <cassert>
#include "xml-writer.hh"
namespace nix {
XMLWriter::XMLWriter(bool indent, std::ostream & output)
: output(output), indent(indent)

View File

@ -10,8 +10,9 @@
#include "daemon.hh"
#include <algorithm>
#include <climits>
#include <cstring>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
@ -23,7 +24,6 @@
#include <pwd.h>
#include <grp.h>
#include <fcntl.h>
#include <limits.h>
#if __APPLE__ || __FreeBSD__
#include <sys/ucred.h>