This file is indexed.

/usr/lib/hugs/packages/OpenAL/Sound/OpenAL/ALC/BasicTypes.hs is in libhugs-openal-bundled 98.200609.21-5.3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--------------------------------------------------------------------------------
-- |
-- Module      :  Sound.OpenAL.ALC.BasicTypes
-- Copyright   :  (c) Sven Panne 2003-2005
-- License     :  BSD-style (see the file libraries/OpenAL/LICENSE)
-- 
-- Maintainer  :  sven.panne@aedion.de
-- Stability   :  provisional
-- Portability :  portable
--
-- This module corresponds to the introductory parts of chapter 6 (AL Contexts
-- and the ALC API) of the OpenAL Specification and Reference (version 1.1).
--
-- The context API makes use of ALC types which are defined separately from the
-- AL types - there is an 'ALCboolean', 'ALCchar', etc.
--
--------------------------------------------------------------------------------

module Sound.OpenAL.ALC.BasicTypes (
   ALCboolean, ALCchar, ALCbyte, ALCubyte, ALCshort, ALCushort, ALCint, ALCuint,
   ALCsizei, ALCenum, ALCfloat, ALCdouble
) where

import Sound.OpenAL.Config