{-# LINE 1 "Graphics/X11/Xlib/Internal.hsc" #-}
-----------------------------------------------------------------------------
-- |
-- Module      :  Graphics.X11.Xlib.Internal
-- Copyright   :  (c) Daniel Wagner, 2013
-- License     :  BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer  :  libraries@haskell.org
-- Stability   :  provisional
-- Portability :  portable
--
-- Functions used often elsewhere in the X11 bindings.
--
-----------------------------------------------------------------------------

module Graphics.X11.Xlib.Internal (xFree) where

import Foreign
import Foreign.C.Types

foreign import ccall unsafe "XFree" xFree :: Ptr a -> IO CInt