{-# LANGUAGE CPP #-}
module OpenSSL.X509.SystemStore
( contextLoadSystemCerts
) where
import OpenSSL.Session (SSLContext)
#ifdef CABAL_OS_WINDOWS
import qualified OpenSSL.X509.SystemStore.Win32 as S
#elif defined(CABAL_OS_MACOSX)
import qualified OpenSSL.X509.SystemStore.MacOSX as S
#else
import qualified OpenSSL.X509.SystemStore.Unix as S
#endif
contextLoadSystemCerts :: SSLContext -> IO ()
contextLoadSystemCerts :: SSLContext -> IO ()
contextLoadSystemCerts = SSLContext -> IO ()
S.contextLoadSystemCerts
{-# INLINE contextLoadSystemCerts #-}