aboutsummaryrefslogtreecommitdiff
path: root/Utility/Daemon.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <id@joeyh.name>2013-05-10 16:29:59 -0500
committerGravatar Joey Hess <id@joeyh.name>2013-05-10 16:29:59 -0500
commit5d0476bf59674b39fa6bad7e4446b5c741181143 (patch)
tree67897681b96fb9e79990033822e1a645de1f96a7 /Utility/Daemon.hs
parent812f7d6c564e297b67850f2aa4751141a8f68e99 (diff)
stub out POSIX stuff
Diffstat (limited to 'Utility/Daemon.hs')
-rwxr-xr-x[-rw-r--r--]Utility/Daemon.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Utility/Daemon.hs b/Utility/Daemon.hs
index ff13a3b8a..835b8f149 100644..100755
--- a/Utility/Daemon.hs
+++ b/Utility/Daemon.hs
@@ -5,12 +5,16 @@
- Licensed under the GNU GPL version 3 or higher.
-}
+{-# LANGUAGE CPP #-}
+
module Utility.Daemon where
import Common
import Utility.LogFile
+#if 0
import System.Posix
+#endif
{- Run an action as a daemon, with all output sent to a file descriptor.
-