summaryrefslogtreecommitdiff
path: root/nix/libutil/util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'nix/libutil/util.cc')
-rw-r--r--nix/libutil/util.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/nix/libutil/util.cc b/nix/libutil/util.cc
index 22022db51a5..ed1a371dfe1 100644
--- a/nix/libutil/util.cc
+++ b/nix/libutil/util.cc
@@ -600,9 +600,6 @@ void createSymlink(const Path & target, const Path & link)
600} 600}
601 601
602 602
603LogType logType = ltPretty;
604Verbosity verbosity = lvlInfo;
605
606static int nestingLevel = 0; 603static int nestingLevel = 0;
607 604
608 605
@@ -691,9 +688,6 @@ void writeToStderr(const string & s)
691} 688}
692 689
693 690
694void (*_writeToStderr) (const unsigned char * buf, size_t count) = 0;
695
696
697void readFull(int fd, unsigned char * buf, size_t count) 691void readFull(int fd, unsigned char * buf, size_t count)
698{ 692{
699 while (count) { 693 while (count) {
@@ -1250,7 +1244,6 @@ void keepOnExec(int fd)
1250////////////////////////////////////////////////////////////////////// 1244//////////////////////////////////////////////////////////////////////
1251 1245
1252 1246
1253volatile sig_atomic_t _isInterrupted = 0;
1254 1247
1255void _interrupted() 1248void _interrupted()
1256{ 1249{