{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 701
{-# LANGUAGE Trustworthy #-}
#endif
module Data.ByteString.Short (
ShortByteString,
toShort,
fromShort,
pack,
unpack,
empty, null, length, index,
) where
import Data.ByteString.Short.Internal
import Prelude ()