blob: 732917684decf49f0829ff4f8d08ed35f9384cd7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | @since 4.7.0.0
module GHC.Profiling where
import GHC.Base
foreign import ccall startProfTimer :: IO ()
foreign import ccall stopProfTimer :: IO ()
|