{-# LANGUAGE ForeignFunctionInterface #-} -- -- module System.XFCE.Xfconf.FFI ( -- * Glib g_free, -- * Re-exported Common FFI stuff module Foreign, module Foreign.C.Types, module Foreign.C.String ) where import Foreign import Foreign.C.Types import Foreign.C.String foreign import ccall unsafe "glib.h g_free" g_free :: Ptr a -> IO ()