{-# LANGUAGE CPP #-}
module System.Process.Typed.Internal (
  nullDevice
) where

-- | The name of the system null device
nullDevice :: FilePath
#if WINDOWS
nullDevice = "\\\\.\\NUL"
#else
nullDevice :: FilePath
nullDevice = FilePath
"/dev/null"
#endif