1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-17 16:02:43 +01:00

libutil/windows: only define headers/code if we are actually on windows

all those includes otherwise break linters.
This commit is contained in:
Jörg Thalheim 2024-12-16 12:43:28 +01:00
parent b9bbdbeb0b
commit eda331e53f
13 changed files with 43 additions and 12 deletions

View file

@ -4,6 +4,7 @@
#include "file-system.hh"
#include "windows-error.hh"
#ifdef WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
@ -50,3 +51,4 @@ bool isRootUser() {
}
}
#endif